九度OJ1004 Median

Posted gccbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了九度OJ1004 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 <stdio.h>
#include <stdlib.h>

int main()
{
    long n1,n2,index;
    long * array1;
    long * array2;
    long i;
    while(scanf("%ld",&n1) != EOF)
    {
        array1 = (long*)malloc(sizeof(long)*n1);
        for(i = 0;i < n1;i++)
            scanf("%ld",&array1[i]);

        scanf("%ld",&n2);
        array2 = (long*)malloc(sizeof(long)*n2);
        for(i = 0;i < n2;i++)
            scanf("%ld",&array2[i]);

        index = n1 + n2;
        if(index%2 == 0)
            index = index / 2;
        else
            index = (index / 2) + 1;

        long count = 0;
        long p1 = 0;
        long p2 = 0;
        long median;
        int flag = 0;
        while(!(count == index || p1 == n1 || p2 == n2))
        {
            if(array1[p1] <= array2[p2])
            {
                median = array1[p1];
                p1++;
                count++;
            }
            else
            {
                median = array2[p2];
                p2++;
                count++;
                //flag = 2;
            }
        }

        if(count == index)
            printf("%ld\n",median);
        else if(p1 != n1)
        {
            while(count != index)
            {
                median = array1[p1];
                p1++;
                count++;
            }
            if(count == index)
            printf("%ld\n",median);
        }
        else if(p2 != n2)
        {
            while(count != index)
            {
                median = array2[p2];
                p2++;
                count++;
            }
            if(count == index)
            printf("%ld\n",median);
        }
    }
    return 0;
}




以上是关于九度OJ1004 Median的主要内容,如果未能解决你的问题,请参考以下文章

九度OJ-题目1009:二叉搜索树

九度OJ平台练习 —— 题目1009

九度oj1002

题目1004:Median

题目1004:Median(qsort函数自定义cmp函数)

oj---九度oj---1061