• 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;
    }
    


  • 相关阅读:
    解决 src/MD2.c:31:20: fatal error: Python.h: No such file or directory安装包错误
    Java 保存对象到文件并恢复 ObjectOutputStream/ObjectInputStream
    Elasticsearch安装配置和测试
    [知识图谱] 环境配置:Java8 + Maven3 + HBase + Titan
    Java8安装配置
    MongoDB 安装、运行、使用、数据恢复
    Java堆空间溢出解决方法 Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
    服务器重装和配置:Ubuntu16.04 + Anaconda3 + GTX1080驱动 + CUDA8 + cuDNN + 常用工具安装
    [Linux] 输出文件的指定行
    [Linux] sed命令使用之在文件中快速删除/增加指定行
  • 原文地址:https://www.cnblogs.com/brucemengbm/p/6817040.html
Copyright © 2020-2023  润新知