程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ3067--Japan(樹狀數組)

POJ3067--Japan(樹狀數組)

編輯:C++入門知識

題意就是讓你求交點有多少個。

我們可以先按a從小到大排序,a相等就按b從小到大排序,這樣題意就變成了讓我們求b數組的逆序數了。

代碼如下:

#include 
#include 
#include 
#include 
#include 
#define M 1005
#define LL long long
using namespace std;

int n,m,k;
int c[M];
struct node
{
	int x,y;
	bool operator < ( const node &h ) const
	{
		return x0)
	{
		sum+=c[x];
		x-=Lowbit(x);
	}
	return sum;
}

int main()
{
	int t;
	scanf("%d",&t);
	for(int count=1;count<=t;count++)
	{
		memset(c,0,sizeof(c));
		scanf("%d%d%d",&n,&m,&k);
		for(int i=1;i<=k;i++)
		{
			scanf("%d%d",&p[i].x,&p[i].y);
		}
		sort(p+1,p+1+k);
		LL ans=0;
		for(int i=1;i<=k;i++)
		{
			Update(p[i].y,1);
			ans+=(i-Sum(p[i].y));
		}
		printf("Test case %d: %lld\n",count,ans);
	}
	return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved