博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cdoj 383 japan 树状数组
阅读量:5782 次
发布时间:2019-06-18

本文共 2783 字,大约阅读时间需要 9 分钟。

Japan

Time Limit: 1 Sec  

Memory Limit: 256 MB

题目连接

http://acm.uestc.edu.cn/#/problem/show/383

Description

Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the East coast and M cities on the West coast (1M100001N10000). K superhighways will be build.(1K1000000) Cities on each coast are numbered 1,2, from North to South. Each superhighway is straight line and connects city on the East coast with city of the West coast. The funding for the construction is guaranteed by ACM. A major portion of the sum is determined by the number of crossings between superhighways. At most two superhighways cross at one location. Write a program that calculates the number of the crossings between superhighways.

Input

The input file starts with T - the number of test cases. Each test case starts with three numbers – NMK. Each of the next K lines contains two numbers – the numbers of cities connected by the superhighway. The first one is the number of the city on the East coast and second one is the number of the city of the West coast.

Output

For each test case write one line on the standard output: Test case (case number): (number of crossings)

Sample Input

1

3 4 4
1 4
2 3
3 2
3 1

Sample Output

Test case 1: 5

HINT

 

题意

 左边有n个城市,右边有m个城市,然后连了k条线,问你一共有多少个交点

题解:

这种题一般和逆序数有关,于是就逆序数咯

排序之后,保证序列

代码:

//qscqesze#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long ll;using namespace std;//freopen("D.in","r",stdin);//freopen("D.out","w",stdout);#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)#define maxn 200500#define mod 1001#define eps 1e-9#define pi 3.1415926int Num;//const int inf=0x7fffffff;const ll inf=999999999;inline ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f;}//*************************************************************************************int d[maxn];int N = 10050;struct node{ int x,y;};bool cmp(node a,node b){ if(a.x==b.x) return a.y>b.y; return a.x>b.x;}node a[maxn];int lowbit(int x){ return x&(-x);}void updata(int x){ while(x<=N) { d[x]+=1; x+=lowbit(x); }}int sum(int x){ int ans = 0; while(x) { ans+=d[x]; x -= lowbit(x); } return ans;}int n,m,k;int main(){ int t=read(); for(int cas=1;cas<=t;cas++) { memset(a,0,sizeof(a)); memset(d,0,sizeof(d)); scanf("%d%d%d",&n,&m,&k); for(int i=1;i<=k;i++) a[i].x=read(),a[i].y=read(); sort(a+1,a+k+1,cmp); int ans = 0; for(int i=1;i<=k;i++) { ans+=sum(a[i].y-1); updata(a[i].y); } printf("Test case %d: %d\n",cas,ans); }}

 

转载地址:http://bvcyx.baihongyu.com/

你可能感兴趣的文章
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
编写高性能的java程序
查看>>
Spring 的配置详解
查看>>
linux已经不存在惊群现象
查看>>
上位机和底层逻辑的解耦
查看>>
关于微信二次分享 配置标题 描述 图片??
查看>>
springcloud使用zookeeper作为config的配置中心
查看>>
校园火灾Focue-2---》洗手间的一套-》电梯
查看>>
bzoj1913
查看>>
L104
查看>>
分镜头脚本
查看>>
链表基本操作的实现(转)
查看>>
邮件发送1
查看>>