甲级| 1029.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 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.

输入描述

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 (≤2×10​5​​) 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<stdio.h>
#include<iostream>
using namespace std;
const int maxn=1000000;
const int INF=0x7fffffff;
int main(){
    int n,m;
    int a[maxn],b[maxn];
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>a[i];
    }
    cin>>m;
    for(int i=0;i<m;i++){
        cin>>b[i];
    }
    a[n]=INF;
    b[m]=INF;
    int i=0,j=0,k=0,count;
    count=(m+n-1)/2;
    
    while(k<count){
        if(a[i]<=b[j]){
            i++;
        }
        else{
            j++;
        }
        k++;
    }
    if(a[i]<b[j]){
        cout<<a[i];
    }
    else{
        cout<<b[j];
    }
    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容