国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

1004_Median

2019-11-10 22:21:24
字體:
供稿:網(wǎng)友
// 1004_Median.cpp : 定義控制臺(tái)應(yīng)用程序的入口點(diǎn)。//題目1004:Median//時(shí)間限制:1 秒內(nèi)存限制:32 兆特殊判題:否提交:18367解決:5087//題目描述:// 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//來源://2011年浙江大學(xué)計(jì)算機(jī)及軟件工程研究生機(jī)試真題#include "stdafx.h"#include "stdio.h"#define MAX 1000002long int a[MAX];long int b[MAX];int main(){ int i,j,count,median; int n,m; while(scanf("%d",&n)!=EOF) { int k=n; int flag = 0; while(k>0) scanf("%ld",&a[n-(k--)]); scanf("%d",&m); k=m; while(k>0) scanf("%ld",&b[m-(k--)]); i=j=count=0; median=(m+n+1)/2; if(!median) ; else{ do if(a[i]>b[j]) { j++; count++; if(count == median) {
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 西畴县| 眉山市| 本溪| 长兴县| 张掖市| 腾冲县| 桑植县| 阿拉善盟| 黄山市| 苏尼特右旗| 南溪县| 营山县| 明光市| 红安县| 驻马店市| 梁河县| 湘潭县| 和林格尔县| 灵寿县| 息烽县| 句容市| 横峰县| 五莲县| 深泽县| 得荣县| 瓮安县| 嘉兴市| 广丰县| 建宁县| 孟津县| 沽源县| 永年县| 临桂县| 霍州市| 陵水| 双柏县| 龙海市| 广灵县| 岫岩| 盐池县| 习水县|