Uva---10881 Piotr's Ants(蚂蚁)

时间:2022-05-05
本文章向大家介绍Uva---10881 Piotr's Ants(蚂蚁),主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

Problem D

Piotr's Ants

Time Limit: 2 seconds

"One thing is for certain: there is no stopping them;the ants will soon be here. And I, for one, welcome ournew insect overlords."

Kent Brockman

Piotr likes playing with ants. He has n of them on a horizontal pole L cm long. Each ant is facing either left or right and walks at a constant speed of 1 cm/s. When two ants bump into each other, they both turn around (instantaneously) and start walking in opposite directions. Piotr knows where each of the ants starts and which direction it is facing and wants to calculate where the ants will end up T seconds from now.

Input The first line of input gives the number of cases, NN test cases follow. Each one starts with a line containing 3 integers: L , T and n (0 <= n <= 10000). The next n lines give the locations of the n ants (measured in cm from the left end of the pole) and the direction they are facing (L or R).

Output For each test case, output one line containing "Case #x:" followed by n lines describing the locations and directions of the n ants in the same format and order as in the input. If two or more ants are at the same location, print "Turning" instead of "L" or "R" for their direction. If an ant falls off the pole before Tseconds, print "Fell off" for that ant. Print an empty line after each test case.

Sample Input

Sample Output

2 10 1 4 1 R 5 R 3 L 10 R 10 2 3 4 R 5 L 8 R

Case #1: 2 Turning 6 R 2 Turning Fell off Case #2: 3 L 6 R 10 R


Problemsetter: Igor Naverniouk Alternate solutions: Frank Pok Man Chu and Yury Kholondyrev

代码:

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cstdlib>
 5 #include<algorithm>
 6 #include<vector>
 7 using namespace std;
 8 const int maxn=10005;
 9 struct ants
10 {
11   int id ; //输入序号
12   int pos ;  //在小木棍上的顺序
13   int status ;  //状态
14   bool operator <( const ants an) const
15   {
16     return pos<an.pos;
17   }
18 }begin[maxn],end[maxn];
19 
20 int order[maxn];
21 
22 int main()
23 {
24     int test;
25     int T,L,n;
26     char str;
27     int a;
28     scanf("%d",&test);
29     for(int k=1;k<=test;k++)
30     {
31      printf("Case #%d:n",k);
32         scanf("%d%d%d",&L,&T,&n);
33      for(int j=0;j<n;j++)
34      {
35        scanf("%d %c",&a,&str);
36        int value=(str=='L')?-1:1;
37        begin[k]=(ants){j,a,value};
38        end[k]=(ants){0,a+T*value,value};
39      }
40      sort(begin,begin+n);
41      for(int i=0;i<n;i++)
42        order[begin[i].id]=i;
43      sort(end,end+n);
44      for(int i=0;i<n-1;i++)
45       if(end[i].pos==end[i+1].pos)
46         end[i].status=end[i+1].status=0;
47      char chastr[][10]={"L","Turning","R"};
48        for(int i=0;i<n;i++){
49         int a=order[i];
50         if(end[a].pos<0||end[a].pos>L)
51           printf("Fell offn");
52         else
53           printf("%d %sn",end[a].pos,chastr[end[a].status+1]);
54        }
55        printf("n");
56     }
57    return 0;
58 }