ZOJ 2970: Faster, Higher, Stronger

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 2970: Faster, Higher, Stronger相关的知识,希望对你有一定的参考价值。

ZOJ 2970: Faster, Higher, Stronger

 

 1 #include <iostream>
 2 #include <string>
 3 #include <algorithm>
 4 using namespace std;
 5 int a[2008];
 6 int main() {
 7     int T;
 8     cin >> T;
 9     string s;
10     int N;
11     while (T--)
12     {
13         cin >> s >> N;
14         for (int i = 0; i<N; i++)cin >> a[i];
15         switch (s[0])
16         {
17         case  F:cout << *min_element(a, a + N); break;
18         default:cout << *max_element(a, a + N);
19         }
20         cout << endl;
21     }
22     return 0;
23 }

 

以上是关于ZOJ 2970: Faster, Higher, Stronger的主要内容,如果未能解决你的问题,请参考以下文章

揭秘 | 双11逆天记录背后的数据库技术革新

前端学习(2970):div的scoped

前端学习(2970):首页的简单尝试

前端学习(2970):首页的简单尝试

前端学习(2970):div的scoped

洛谷 P2970 [USACO09DEC]自私的放牧Selfish Grazing