题目链接: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 }