SGU - 358 - Median of Medians (寻觅中位数中的中位数)
SGU - 358 - Median of Medians (寻找中位数中的中位数)
Vasya learned definition of median of three numbers. He says, "Median of three numbers is the number located in the middle when numbers are ordered in non-descending order". Subtle Pete gave him much more difficult task. Vasya has to find median of each of three triples and then find the median of three numbers he found. Please help Vasya with the task.
358. Median of Medians
Time limit per test: 0.25 second(s)
Memory limit: 65536 kilobytes
Memory limit: 65536 kilobytes
input: standard
output: standard
output: standard
Vasya learned definition of median of three numbers. He says, "Median of three numbers is the number located in the middle when numbers are ordered in non-descending order". Subtle Pete gave him much more difficult task. Vasya has to find median of each of three triples and then find the median of three numbers he found. Please help Vasya with the task.
Input
The input file contains three lines. Each line contains three integers. Each number is not less than -1000 and is not greater than 1000.Output
Print one number - median of three medians.Example(s)
sample input |
sample output |
6 4 5 7 9 8 1 2 3 |
5 |
sample input |
sample output |
1 2 2 4 3 2 2 3 4 |
3 |
Online Contester Team © 2002 - 2010. All rights reserved. |
AC代码:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; int a[5]; int ans[5]; int main() { for(int i = 0; i < 3; i++) { for(int j = 0; j < 3; j++) { scanf("%d", &a[j]); } sort(a, a + 3); ans[i] = a[1]; } sort(ans, ans + 3); printf("%d\n", ans[1]); return 0; }