POJ 3067 Japan

题意: 东海岸有x个城市,西海岸有y个。x与y 之间有很多高速公路。问k条路有多少个交叉点。

我就是求的逆序对,把east当作 pos 按照从大到小排序。然后插入。接下来的就跟求逆序对的一样了。

线段树或者数状数组都能过。

注意最后要用long long。

(午夜一发,写完吃个面包睡觉。

#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<bitset>
#include<vector>
#include<cmath>

#define INF 0x7fffffff
#define eps 1e-8
#define LL long long
#define PI 3.141592654
#define CLR(a,b) memset(a,b,sizeof(a))
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define FOR_(i,a,b) for(int i=a;i>=b;i--)
#define sf scanf
#define pf printf
#define all(v) (v).begin(),(v).end()
#define acfun std::ios::sync_with_stdio(false)

#define SIZE (1000  +2)
#define MOD 1000000007
using namespace std;

int a[SIZE*4];
int up;
void update(int l,int r,int o)
{
    if(l==r)
        a[o]++;
    else
    {
        int m=(l+r)>>1;
        if(up<=m)update(l,m,o*2);
        else update(m+1,r,o*2+1);
        a[o]=a[o*2]+a[o*2+1];
    }
}
int ql,qr;
int query(int l,int r,int o)
{
    if(l>=ql&&r<=qr)return a[o];
    int m=(l+r)>>1;
    int ans=0;
    if(ql<=m)ans+=query(l,m,o*2);
    if(qr>m)ans+=query(m+1,r,o*2+1);
    return ans;
}

struct node
{
    int e,w;
    bool friend operator <(node a,node b)
    {
        if(a.e==b.e)
            return a.w>b.w;
        return a.e>b.e;
    }
}way[SIZE*SIZE];

int main()
{
    int t;
    int east,west,n;
    sf("%d",&t);
    FOR(tt,1,t+1)
    {
        sf("%d%d%d",&east,&west,&n);
        FOR(i,0,n)
        sf("%d%d",&way[i].e,&way[i].w);
        sort(way,way+n);
        CLR(a,0);
        LL ans=0;
        FOR(i,0,n)
        {
            up=way[i].w;
            update(1,west,1);
            ql=1,qr=way[i].w-1;
            if(ql<=qr)
            ans+=query(1,west,1);
        }
        pf("Test case %d: %lld\n",tt,ans);
    }
}
时间: 2024-10-11 21:41:55

POJ 3067 Japan的相关文章

poj 3067 Japan(线段树)

题目链接:poj 3067 Japan 题目大意:给定N和M,表示东部和西部城市的数量,然后K条铁路,每条铁路连接东西城市,问说会有多少次交点. 解题思路:线段树维护即可,每条边按照x小的,y小的排序,然后每次查询y+1到M的即可. #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn = 1005; #define lson(x) ((

两边点连直线求交点总数 树状数组或线段树 poj 3067 Japan

http://poj.org/problem?id=3067 Japan Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 23602   Accepted: 6369 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

POJ 3067 Japan(树状数组/求逆序数)

Japan Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 22258   Accepted: 5995 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 coas

POJ 3067 Japan (树状数组)

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 (M <= 1000, N <= 1000). K superhighways will be build. C

POJ 3067 Japan (树状数组 &amp;&amp; 控制变量)

题意: 西海岸和东海岸有分别有n (1~n)个和m (1~m)个城市, 两个海岸的城市之间有k条公路连通, 公路会相交, 现在给出城市和公路的信息问你由这些公路组成的复杂交通有多少个交点 (如果两个条公路的起点或者终点相同那这两点不算做相交) 分析: 这里公路信息用(x, y)二元组来表示西海岸的x城市与东海岸的y城市相连, 首先自然想到给k个公路的信息按x或y排个序, 否则变量太乱不助于思考!先设想按x升序排序且先不管x相等的情况, 如果x是升序的, 那我在考虑第i条公路的时候是不是只要关心y

POJ 3067 Japan 树状数组求逆序对

题目大意:有两排城市,这两排城市之间有一些路相互连接着,求有多少条路相互交叉. 思路:把所有的路先按照x值从小到大排序,x值相同的按照y值从小到大排序,然后插入边的时候,先找有多少比自己y值小的,这些边的x值一定比自己大,也就是一个逆序对,然后统计起来.记得答案要用long long (__int64) CODE: #include <cstdio> #include <cstring> #include <iostream> #include <algorith

POJ 3067 Japan 【 树状数组 】

题意:左边有n个城市,右边有m个城市,现在修k条路,问会形成多少个交点 先按照x从小到大排,x相同的话,则按照y从小到大排,然后对于每一个y统计前面有多少个y比它大,它们就一定会相交 另外要用long long 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include <cmath> 5 #include<stack> 6 #include<vector&g

poj 3067 poj 2481 树状数组变形+对区间排序

这种问题先对区间和线段进行排序,排序方法见代码cmp 然后分析其中一个点,用sum求值 poj 3067 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 (M <

POJ——T 3067 Japan

http://poj.org/problem?id=3067 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 29474   Accepted: 7950 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