浙江大学PAT_甲级_1029. Median (25)

来源:互联网 发布:改革开放40年成就数据 编辑:程序博客网 时间:2024/06/06 02:46

题目链接:点击打开链接

Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} is 12, and the median of S2={9, 10, 15, 16, 17} is 15. The median of two sequences is defined to be the median of the nondecreasing sequence which contains all the elements of both sequences. For example, the median of S1 and S2 is 13.

Given two increasing sequences of integers, you are asked to find their median.

Input

Each input file contains one test case. Each case occupies 2 lines, each gives the information of a sequence. For each sequence, the first positive integer N (<=1000000) is the size of that sequence. Then N integers follow, separated by a space. It is guaranteed that all the integers are in the range of long int.

Output

For each test case you should output the median of the two given sequences in a line.

Sample Input
4 11 12 13 145 9 10 15 16 17
Sample Output
13
我的C++代码:

#include<iostream>#include<algorithm>using namespace std;int main(){int n, m,i=0;int arr[2000000] = {0};scanf("%d", &n);while (getchar()!= '\n')//输入回车时结束一行输入,换行{scanf("%d", &arr[i]);i++;}scanf("%d", &m);while (getchar() != '\n'){scanf("%d", &arr[i]);i++;}sort(arr, arr + n + m); //排序printf("%d", arr[(n + m - 1) / 2]);//求中位数return 0;}


1 0
原创粉丝点击