题目链接:http://codeforces.com/contest/984
Two players play a game.
Initially there are nn integers a1,a2,…,ana1,a2,…,an written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the board, i. e. n−1n−1 turns are made. The first player makes the first move, then players alternate turns.
The first player wants to minimize the last number that would be left on the board, while the second player wants to maximize it.
You want to know what number will be left on the board after n−1n−1 turns if both players make optimal moves.
The first line contains one integer nn (1≤n≤10001≤n≤1000) — the number of numbers on the board.
The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤1061≤ai≤106).
Print one number that will be left on the board.
3
2 1 3
2
3
2 2 2
2
In the first sample, the first player erases 33 and the second erases 11. 22 is left on the board.
In the second sample, 22 is left on the board regardless of the actions of the players.
题意:给你n个数,求出排在中间的那个数,签到题。
代码实现如下:
1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int n; 5 int a[1007]; 6 7 int main() { 8 cin >>n; 9 for(int i = 0; i < n; i++) { 10 cin >>a[i]; 11 } 12 sort(a, a + n); 13 if(n % 2 == 1) { 14 cout <<a[n/2] <<endl; 15 } else { 16 cout <<a[(n-1) / 2] <<endl; 17 } 18 return 0; 19 }
本文提供了CodeForces竞赛中四道题目的详细解答,包括最小化游戏策略、验证扫雷地图合法性、判断分数在特定进制下的有限性以及区间最大XOR值的求解。

171

被折叠的 条评论
为什么被折叠?



