zoukankan      html  css  js  c++  java
  • POJ3067: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. 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 – N, M, K. 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
    
    
    求交叉的点数
    满足交叉的条件是si<sj&&ei>ej || si>sj&&ei<ej
    排好序后就是求终点逆序数了。能够用线段树实现
    
    
    #include<stdio.h>
    #include<string.h>
    #include <algorithm>
    using namespace std;
    
    #define N 1010
    #define M 1000010
    #define lson rt<<1,l,mid
    #define rson rt<<1|1,mid+1,r
    int T,n,m,k;
    int sum[N<<2],a[N];
    __int64 ans;
    
    struct node
    {
        int x;
        int y;
    } s[M];
    
    int cmp(node a,node b)
    {
        if(a.y!=b.y)
            return a.y>b.y;
        return a.x<b.x;
    }
    
    void Pushup(int rt)
    {
        sum[rt] = sum[rt<<1] + sum[rt<<1|1];
    }
    
    void Update(int rt,int l,int r,int x)
    {
        if(l == r)
        {
            sum[rt]++;
            a[l]++;
            return ;
        }
        int mid = (l + r) >> 1;
        if(x <= mid)
            Update(lson,x);
        else
            Update(rson,x);
        Pushup(rt);
    }
    
    int Query(int rt,int l,int r,int L,int R)
    {
        if(L <= l && R >= r)
        {
            return sum[rt];
        }
        int mid= (l + r) >> 1;
        int res= 0;
        if(L <= mid) res += Query(lson,L,R);
        if(R > mid ) res += Query(rson,L,R);
        return res;
    }
    
    int main()
    {
        int i,j,res,cas = 1;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d%d%d",&n,&m,&k);
            memset(sum,0,sizeof(sum));
            memset(a,0,sizeof(a));
            ans = 0;
            res = 0;
            for(i = 1; i <= k; ++i)
                scanf("%d %d",&s[i].x,&s[i].y);
            sort(s+1,s+1+k,cmp);
            for(i = 1; i <= k; ++i)
            {
                int tmp = s[i].y;
                if(i>1 && s[i].y == s[i-1].y)
                    res++;
                else
                    res = 0;
                ans += Query(1,1,n,1,s[i].x)-a[s[i].x]-res;
                Update(1,1,n,s[i].x);
            }
            printf("Test case %d: %I64d
    ",cas++,ans);
        }
        return 0;
    }
    


  • 相关阅读:
    20190430-screen、client、offset、scroll等JS中各种宽度距离
    20190423-Vscode与Sass不得不说的秘密(>^ω^<)
    20190422-外部导入CSS样式之link、CSS@import、Sass分音
    20190421-那些年使用过的CSS预处理器(CSS Preprocessor)之Sass and Less
    20190421-那些年使用过的CSS预处理器(CSS Preprocessor)
    20190409-层叠の层叠上下文、层叠水平、层叠顺序、z-index、伪元素层叠
    20190408-规范书写
    20190404-transition、transform转换、animation、媒体查询
    20190402-display展现、float浮动
    20190401-颜色书写
  • 原文地址:https://www.cnblogs.com/brucemengbm/p/6817040.html
Copyright © 2011-2022 走看看