zoukankan      html  css  js  c++  java
  • Cows(poj 2481 树状数组)

    Cows
    Time Limit: 3000MS   Memory Limit: 65536K
    Total Submissions: 15301   Accepted: 5095

    Description

    Farmer John's cows have discovered that the clover growing along the ridge of the hill (which we can think of as a one-dimensional number line) in his field is particularly good.

    Farmer John has N cows (we number the cows from 1 to N). Each of Farmer John's N cows has a range of clover that she particularly likes (these ranges might overlap). The ranges are defined by a closed interval [S,E].

    But some cows are strong and some are weak. Given two cows: cowi and cowj, their favourite clover range is [Si, Ei] and [Sj, Ej]. If Si <= Sj and Ej <= Ei and Ei - Si > Ej - Sj, we say that cowi is stronger than cowj.

    For each cow, how many cows are stronger than her? Farmer John needs your help!

    Input

    The input contains multiple test cases.
    For each test case, the first line is an integer N (1 <= N <= 105), which is the number of cows. Then come N lines, the i-th of which contains two integers: S and E(0 <= S < E <= 105) specifying the start end location respectively of a range preferred by some cow. Locations are given as distance from the start of the ridge.

    The end of the input contains a single 0.

    Output

    For each test case, output one line containing n space-separated integers, the i-th of which specifying the number of cows that are stronger than cowi.

    Sample Input

    3
    1 2
    0 3
    3 4
    0
    

    Sample Output

    1 0 0
    

    Hint

    Huge input and output,scanf and printf is recommended.
    题意:两个区间:[Si, Ei] and [Sj, Ej].(0 <= S < E <= 105). 若 Si <= Sj and Ej <= Ei and Ei – Si > Ej – Sj, 则第i个区间覆盖第j个区间。给定N个区间(1 <= N <= 10^5),分别求出对于第i个区间,共有多少个区间能将它覆盖。

    思路:初看好像挺复杂的。其实可以把区间[S, E]看成点(S, E),这样题目就转化为hdu 1541 Stars。只是这里是求该点左上方的点的个数。

    虽然如此,我还是WA了不少,有一些细节没注意到。给点排序时是先按y由大到小排序,再按x由小到大排序。而不能先按x排序。比如n=3, [1,5], [1,4], [3,5]的例子。另外还要注意对相同点的处理。

     1 #include <cstdio>
     2 #include <algorithm>
     3 #include <cstring>
     4 using namespace std;
     5 
     6 const int MAX = 100010;  
     7   
     8 struct Node{  
     9     int x, y, id, ans;  
    10 }seq[MAX];  
    11 int sum[MAX], n;  
    12   
    13 int cmp1(Node a,Node b){  
    14     if(a.y==b.y)  return a.x<b.x;
    15     return a.y>b.y;
    16 }  
    17 int cmp2(Node a,Node b){  
    18   return a.id<b.id;
    19 }  
    20   
    21 int lowbit(int x){  
    22     return x & (-x);  
    23 }  
    24 void add(int pos, int val){  
    25     while(pos < MAX){        
    26         sum[pos]+=val;  
    27         pos+=lowbit(pos);  
    28     }  
    29 }  
    30 int getsum(int pos){  
    31     int res = 0;  
    32     while(pos>0){  
    33         res+=sum[pos];  
    34         pos-=lowbit(pos);  
    35     }  
    36     return res;  
    37 }  
    38   
    39 int main()  
    40 {  
    41   freopen("in.txt","r",stdin);
    42   int i,j;
    43    while(scanf("%d", &n) && n){  
    44        for(i=1;i<=n;i++){  
    45            scanf("%d%d", &seq[i].x, &seq[i].y);  
    46             seq[i].x++, seq[i].y++;  
    47            seq[i].id = i;  
    48         }  
    49         sort(seq+1,seq+n+1,cmp1);
    50        memset(sum, 0, sizeof(sum));  
    51         seq[1].ans = 0;  
    52         add(seq[1].x, 1);  
    53      int fa = 1;  
    54       for(i=2;i<=n;i++){  
    55             if(seq[i].x == seq[fa].x && seq[i].y == seq[fa].y){  
    56                seq[i].ans = seq[fa].ans;  
    57             }else{  
    58                 fa = i;  
    59                seq[i].ans = getsum(seq[i].x);  
    60             }  
    61   
    62             add(seq[i].x, 1);  
    63         }  
    64         sort(seq+1,seq+n+1,cmp2);  
    65         printf("%d", seq[1].ans);  
    66         for(i=2;i<=n;i++) printf(" %d", seq[i].ans);  
    67       printf("
    ");  
    68     }  
    69    return 0;  
    70 }  
  • 相关阅读:
    php实现上传图片保存到数据库的方法
    支付宝集成——如何在回调地址中使用自定义参数
    QQ音乐的各种相关API
    xampp默认mysql密码设置,修改mysql的默认空密码
    node.js 初体验
    php调用empty出现错误Can't use function return value in write context
    ecshop数据库操作函数
    ecshop中$user对象
    为什么我的联想打印机M7450F换完墨粉之后打印机显示请更换墨粉盒?这是我的墨盒第一次灌粉·、
    PHP中获取当前页面的完整URL
  • 原文地址:https://www.cnblogs.com/a1225234/p/5038618.html
Copyright © 2011-2022 走看看