zoukankan      html  css  js  c++  java
  • 1029 Median (25分)

    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 Specification:

    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 (≤) 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 Specification:

    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

    题解:
    排序,注意数组的大小>=4*10^5,且定义为long int
    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1000010;
    bool cmp(long int a,long int b){
        return a<b;
    }
    long int num[maxn];
    int main(){
        int m,n;
        scanf("%d",&n);
        for(int i=0;i<n;i++){
            cin>>num[i];
        }
        scanf("%d",&m);
        for(int i=0;i<m;i++){
            cin>>num[i+n];
        }
        sort(num,num+n+m,cmp);
        if((n+m)%2==0){
            printf("%d
    ",num[(n+m)/2-1]);
        }
        else{
            printf("%d
    ",num[(n+m)/2]);
        }
        return 0;
    }
    
    
    


  • 相关阅读:
    c/c++指针
    C++小思
    gvim-ide plugins
    Windows下文件的所有和权限
    C++枚举类型
    linux的cgroup控制
    linux的free命令
    linux下可以禁用的一些服务
    bat programming is easy and powerful
    c++类定义代码的分离
  • 原文地址:https://www.cnblogs.com/dreamzj/p/14359260.html
Copyright © 2011-2022 走看看