zoukankan      html  css  js  c++  java
  • 九度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
    ",median);
            else if(p1 != n1)
            {
                while(count != index)
                {
                    median = array1[p1];
                    p1++;
                    count++;
                }
                if(count == index)
                printf("%ld
    ",median);
            }
            else if(p2 != n2)
            {
                while(count != index)
                {
                    median = array2[p2];
                    p2++;
                    count++;
                }
                if(count == index)
                printf("%ld
    ",median);
            }
        }
        return 0;
    }
    




  • 相关阅读:
    Dungeon Master(BFS)
    Shuffle'm Up(串)
    分解素因子
    Snowflake Snow Snowflakes(查找)
    求素数(素数筛选+打表)
    A simple problem(并查集判环)
    Eqs(枚举+ hash)
    Squares(枚举+set 查找)
    从控制台输入10个人的年龄放入数组,将十个人的年龄求总和
    数组
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/6819809.html
Copyright © 2011-2022 走看看