zoukankan      html  css  js  c++  java
  • HDU-1896 Stones

    http://acm.hdu.edu.cn/showproblem.php?pid=1896

    题意:一个人从0开始走起,遇到偶数个石头就踢。要是同一位置有多个石头,则先扔最重的石头(也就是扔的最近的那个石头),要你求扔的石头离初始位置的最大距离。

     Stones

    Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
    Total Submission(s): 1231    Accepted Submission(s): 759


    Problem Description
    Because of the wrong status of the bicycle, Sempr begin to walk east to west every morning and walk back every evening. Walking may cause a little tired, so Sempr always play some games this time.
    There are many stones on the road, when he meet a stone, he will throw it ahead as far as possible if it is the odd stone he meet, or leave it where it was if it is the even stone. Now give you some informations about the stones on the road, you are to tell me the distance from the start point to the farthest stone after Sempr walk by. Please pay attention that if two or more stones stay at the same position, you will meet the larger one(the one with the smallest Di, as described in the Input) first.
     
    Input
    In the first line, there is an Integer T(1<=T<=10), which means the test cases in the input file. Then followed by T test cases.
    For each test case, I will give you an Integer N(0<N<=100,000) in the first line, which means the number of stones on the road. Then followed by N lines and there are two integers Pi(0<=Pi<=100,000) and Di(0<=Di<=1,000) in the line, which means the position of the i-th stone and how far Sempr can throw it.
     
    Output
    Just output one line for one test case, as described in the Description.
     
    Sample Input
    2
    2
    1 5
    2 4
    2
    1 5
    6 6
     
     
    Sample Output
    11
    12
     
     
    Author
    Sempr|CrazyBird|hust07p43
     
    Source
     
    Recommend
    lcy   |   We have carefully selected several similar problems for you:  1892 1899 1895 1894 1897 
     
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<queue>
     6 using namespace std;
     7 struct node
     8 {
     9      friend bool operator<(node n1,node n2)
    10     {
    11        
    12           if(n1.p>n2.p)//小的优先级大。
    13                  return 1;
    14            else
    15             {
    16                 if(n1.p==n2.p&&n1.d>n2.d)
    17                 {
    18                     return 1;
    19                 }
    20                 else
    21                    return 0;
    22             }
    23 
    24     }
    25     int p;
    26     int d;
    27 };
    28 int main()
    29 {
    30     int t,f;
    31     scanf("%d",&t);
    32     while(t--)
    33     {
    34         int n,i;
    35        scanf("%d",&n);
    36         struct  node a;
    37         priority_queue<node>q;
    38        for(i=0;i<n;i++)
    39          {
    40              scanf("%d%d",&a.p,&a.d);
    41              q.push(a);
    42          }
    43          int s=0;
    44          int ans=0;
    45          while(!q.empty())
    46          {
    47              s++;
    48              a=q.top();
    49            //  printf("p1=%d,d1=%d
    ",a.p,a.d);
    50              q.pop();
    51              if(s%2==1)
    52              {
    53               // printf("p=%d,d=%d
    ",a.p,a.d);
    54               // ans+=a.p+a.d;
    55                a.p=a.p+a.d;
    56              //  f=a.d;
    57               q.push(a);
    58              }
    59 
    60           }
    61 
    62         printf("%d
    ",a.p);
    63     }
    64     return 0;
    65 }
  • 相关阅读:
    C# 设计模式-桥接模式
    C# 设计模式-外观模式
    C# 设计模式-代理模式
    楼层导航奇葩问题解决
    楼层导航和回顶部
    回顾
    禁止右击选中
    安装客服在线系统
    csdn 分享私藏的18个黑科技网站,想找什么软件就找什么软件!!!
    eyoucms 模板
  • 原文地址:https://www.cnblogs.com/cancangood/p/4442547.html
Copyright © 2011-2022 走看看