首页 > 其他 > 详细

1029. Median (25)

时间:2015-12-06 11:13:35      阅读:203      评论:0      收藏:0      [点我收藏+]
1,注意algorithm 里面有merge函数
2,scanf 比cin快许多,大约是后者1/3
3,输入long int  用scanf("%ld", &a[i]); 是小写的l

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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 14
5 9 10 15 16 17
Sample Output
13
 

  1. #pragma warning(disable:4996)
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. #include <stdio.h>
  6. using namespace std;
  7. long int a[1000100],b[1000100],c[2000200];
  8. int main(void) {
  9. int n1, n2;
  10. cin >> n1;
  11. for (int i = 0; i < n1; i++) {
  12. scanf("%ld", &a[i]);
  13. }
  14. cin >> n2;
  15. for (int i = 0; i < n2; i++) {
  16. scanf("%ld", &b[i]);
  17. }
  18. merge(a, a+n1, b, b+n2, c);
  19. cout << c[(n1 + n2 - 1) / 2];
  20. return 0;
  21. }





1029. Median (25)

原文:http://www.cnblogs.com/zzandliz/p/5023109.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!