首页 > 代码库 > POJ 3067 Japan 树状数组求逆序对
POJ 3067 Japan 树状数组求逆序对
题目大意:有两排城市,这两排城市之间有一些路相互连接着,求有多少条路相互交叉。
思路:把所有的路先按照x值从小到大排序,x值相同的按照y值从小到大排序,然后插入边的时候,先找有多少比自己y值小的,这些边的x值一定比自己大,也就是一个逆序对,然后统计起来。记得答案要用long long (__int64)
CODE:
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define MAX 1010 using namespace std; struct Complex{ int x,y; bool operator <(const Complex &a)const { if(x != a.x) return x < a.x; return y < a.y; } }point[MAX * MAX]; int cases; int m,n,cnt; __int64 ans; __int64 fenwick[MAX]; inline void Initialize(); inline void Fix(int x); inline __int64 GetSum(int x); int main() { cin >> cases; for(int T = 1;T <= cases; ++T) { scanf("%d%d%d",&m,&n,&cnt); Initialize(); for(int i = 1;i <= cnt; ++i) scanf("%d%d",&point[i].x,&point[i].y); sort(point + 1,point + cnt + 1); for(int i = 1;i <= cnt; ++i) { ans += GetSum(point[i].y + 1); Fix(point[i].y); } cout << "Test case " << T << ": " << ans << endl; } return 0; } inline void Initialize() { ans = 0; memset(fenwick,0,sizeof(fenwick)); } inline void Fix(int x) { for(;x;x -= x&-x) fenwick[x]++; } inline __int64 GetSum(int x) { __int64 re = 0; for(;x <= n;x += x&-x) re += fenwick[x]; return re; }
POJ 3067 Japan 树状数组求逆序对
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。