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 Input4 11 12 13 14 5 9 10 15 16 17Sample Output
13
/*
* 全都插入一个vector然后排序 O(n*logn) 10^7个数。。我以为觉得会超一秒的。。然而将近900ms过了。。
*/
#include "iostream"
#include "vector"
#include "algorithm"
#include "cstring"
using namespace std;
int main() {
int n, m;
vector<int> v;
cin >> n;
for(int i=0;i<n;i++) {
int a;
cin >> a;
v.push_back(a);
}
cin >> m;
for (int i = 0; i<m; i++) {
int a;
cin >> a;
v.push_back(a);
}
sort(v.begin(), v.end());
cout << v[(m + n - 1) / 2];
return 0;
}/*
* 这个O(m+n)的算法也跑了900ms 。。。不知道为啥。。
*/
#include "iostream"
#include "vector"
#include "algorithm"
#include "cstring"
using namespace std;
int main() {
int n, m;
vector<int> v;
vector<int>v1, v2;
cin >> n;
for(int i=0;i<n;i++) {
int a;
cin >> a;
v1.push_back(a);
}
cin >> m;
for (int i = 0; i<m; i++) {
int a;
cin >> a;
v2.push_back(a);
}
int i = 0;
int j = 0;
int k = 0;
while (i < n && j < m) {
if (v1[i] < v2[j]) {
v.push_back(v1[i++]);
}
else {
v.push_back(v2[j++]);
}
}
while (i < n) {
v.push_back(v1[i]);
i++;
}
while (j<m) {
v.push_back(v2[j]);
j++;
}
cout << v[(m + n - 1) / 2] << endl;
return 0;
}
2272

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



