设为首页 加入收藏

TOP

题目1004:Median
2015-07-20 17:49:52 来源: 作者: 【 】 浏览:8
Tags:题目 1004 Median
题目描述:

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 non-decreasing 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.

输入:

Each input file may contain more than 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.

输出:

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

样例输入:
4 11 12 13 14
5 9 10 15 16 17
样例输出:
13


#include

int main()
{
int M,N;
while(scanf("%d",&M)!=EOF)
{
long MArray[M];
for(int i=0;i scanf("%ld",&MArray[i]);
scanf("%d",&N);
long NArray[N];
for(int j=0;j scanf("%ld",&NArray[j]);
long bothArray[M+N];
int p1=0,p2=0;
for(int i = 0;i {

if(MArray[p1] {
bothArray[i] = MArray[p1];
p1++;
}
else if(MArray[p1]>NArray[p2])
{
bothArray[i]= NArray[p2];
p2++;
}
else
{
bothArray[i]= MArray[p1];
p1++;
p2++;
}
}
long increaseSeq[M+N];
int end=M+N-1;
int p3=0;
for(int i=0;i {
if(bothArray[i]!=bothArray[i+1])
{

increaseSeq[p3]=bothArray[i];
p3++;
}
if(bothArray[i]==bothArray[i+1])
end--;
}
printf("%ld\n",increaseSeq[end/2]);
}
}


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇URAL 1752. Tree 2 树的直径+LCA.. 下一篇poj 3185 The Water Bowls(高斯..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·哈希表 - 菜鸟教程 (2025-12-24 20:18:55)
·MySQL存储引擎InnoDB (2025-12-24 20:18:53)
·索引堆及其优化 - 菜 (2025-12-24 20:18:50)
·Shell 中各种括号的 (2025-12-24 19:50:39)
·Shell 变量 - 菜鸟教 (2025-12-24 19:50:37)