博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT A1029 Median (25 分)——队列
阅读量:5331 次
发布时间:2019-06-14

本文共 1984 字,大约阅读时间需要 6 分钟。

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 (2×105​​) 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 145 9 10 15 16 17

Sample Output:

13
 
#include 
#include
#include
#include
#include
using namespace std;queue
a,b;int main() { int n,m; int x; scanf("%d", &n); int count=0; for (int j = 0; j < n; j++) { scanf("%d", &x); a.push(x); } a.push(INT_MAX); scanf("%d", &m); int point = (n + m - 1) / 2; for (int i = 0; i < m; i++) { int temp; scanf("%d", &temp); b.push(temp); if (count == point) { printf("%d", min(a.front(), b.front())); return 0; } if (a.front() < temp) { a.pop(); } else { b.pop(); } count++; } b.push(INT_MAX); while (count != point) { if (a.front() < b.front()) { a.pop(); } else { b.pop(); } count++; } printf("%d", min(a.front(), b.front()));}

注意点:这道题内存限制1.5M,全部储存起来做内存就超了,而题目里说给的数字不超过long int,实际测试发现没有超过int。

要不超过内存,必须使用边读数据边处理的方法,中间数就是要把前面 (n+m-1)/2 个数弹出,用队列实现,只要读第二个数组时一个个判断就好了。

ps:加入一个INT_MAX是为了判断时方便,不用再判断队列是否为空,最大数肯定不会被弹出。

转载于:https://www.cnblogs.com/tccbj/p/10397973.html

你可能感兴趣的文章
我的PHP学习之路
查看>>
【题解】luogu p2340 奶牛会展
查看>>
对PostgreSQL的 SPI_prepare 的理解。
查看>>
解决响应式布局下兼容性的问题
查看>>
京东静态网页练习记录
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
Solr4.8.0源码分析(5)之查询流程分析总述
查看>>
[Windows Server]安装系统显示“缺少计算机所需的介质驱动程序”解决方案
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Lucene 学习之二:数值类型的索引和范围查询分析
查看>>
软件开发工作模型
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>