码迷,mamicode.com
首页 > 其他好文 > 详细

ZOJ 2970 Faster, Higher, Stronger

时间:2014-07-18 00:05:06      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   strong   

F - Faster, Higher, Stronger
Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu

Description

In the year 2008, the 29th Olympic Games will be held in Beijing. This will signify the prosperity of China and Beijing Olympics is to be a festival for people all over the world as well.

The motto of Olympic Games is "Citius, Altius, Fortius", which means "Faster, Higher, Stronger".

bubuko.com,布布扣

In this problem, there are some records in the Olympic Games. Your task is to find out which one is faster, which one is higher and which one is stronger.

Input

Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 50) which is the number of test cases. And it will be followed by T consecutive test cases.

Each test case has 3 lines. The first line is the type of the records, which can only be "Faster" "Higher" or "Stronger". The second line is a positive integer N meaning the number of the records in this test case. The third line has N positive integers, i.e. the records data. All the integers in this problem are smaller than 2008.

Output

Results should be directed to standard output. The output of each test case should be a single integer in one line. If the type is "Faster", the records are time records and you should output the fastest one. If the type is "Higher", the records are length records. You should output the highest one. And if the type is "Stronger", the records are weight records. You should output the strongest one.

Sample Input

3
Faster
3
10 11 12
Higher
4
3 5 4 2
Stronger
2
200 200

Sample Output

10
5
200
题目意思:输入Faster的时候 输出最小的值,输入Higher和Stronger的时候输出最大的值
sort一下之后输出判断一下就ok了
bubuko.com,布布扣
 1 #include<iostream>  
 2 #include<string.h>  
 3 #include<stdio.h>  
 4 #include<ctype.h>  
 5 #include<algorithm>  
 6 #include<stack>  
 7 #include<queue>  
 8 #include<set>  
 9 #include<math.h>  
10 #include<vector>  
11 #include<map>  
12 #include<deque>  
13 #include<list>  
14 using namespace std;  
15 int main()
16 {
17     int a;
18     scanf("%d",&a);
19     while(a--)
20     {
21         char b[100];
22         scanf("%s",b);
23         int n,m[10000];
24         scanf("%d",&n);
25         for(int i=0;i<n;i++)
26         {
27             scanf("%d",&m[i]);
28         }
29         sort(m,m+n);
30         if(!strcmp(b,"Faster"))
31         printf("%d\n",m[0]);
32         if(!strcmp(b,"Higher")||!strcmp(b,"Stronger"))
33         printf("%d\n",m[n-1]);
34     }
35     return 0;
36 }
View Code

ZOJ 2970 Faster, Higher, Stronger,布布扣,bubuko.com

ZOJ 2970 Faster, Higher, Stronger

标签:des   style   blog   http   color   strong   

原文地址:http://www.cnblogs.com/qscqesze/p/3851776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!