博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
九度 寻找大富翁
阅读量:5775 次
发布时间:2019-06-18

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

/* * c.cpp * *  Created on: 2013-10-7 *      Author: wangzhu */#include
#include
#include
#include
#include
#include
using namespace std;int main() { freopen("data.in", "r", stdin); int n,m,k; while(~scanf("%d%d",&n,&m)) { if(0 == n && 0 == m) { break; } priority_queue
,less
> p; for(int i = 0;i < n;i++) { scanf("%d", &k); p.push(k); } if(m > n) { m = n; } m --; printf("%d",p.top()); p.pop(); while(m--) { printf(" %d",p.top()); p.pop(); } printf("\n"); } return 0;}

 

转载于:https://www.cnblogs.com/xiaoxian1369/p/3367283.html

你可能感兴趣的文章
SqlServer和Mysql插入记录前判断是否存在,存在则插入,不存在则修改。
查看>>
ubuntu alsa2
查看>>
[破解] IPhone 5S icloud dns bypass
查看>>
【转】TCP/IP详解学习笔记(一)
查看>>
layer.js:2 Uncaught TypeError: Cannot read property 'extend' of undefined
查看>>
Centos7.x:开机启动服务的配置和管理
查看>>
HTML5 浏览器返回按钮/手机返回按钮事件监听
查看>>
使用 HPC Pack 为 Azure 中的 Windows HPC 工作负荷创建和管理群集的选项
查看>>
xss
查看>>
iOS:百度长语音识别具体的封装:识别、播放、进度刷新
查看>>
JS获取服务器时间并且计算距离当前指定时间差的函数
查看>>
.NET Core 中依赖注入 AutoMapper 小记
查看>>
Github
查看>>
【C#】C#线程_基元线程的同步构造
查看>>
PyQt5
查看>>
在Android上编译OSG[3.0.2 ] (转)
查看>>
Android Studio rename module Can't rename root module
查看>>
Android应用安全开发之浅谈网页打开APP
查看>>
JS省市区三级联动
查看>>
结构体的定义以及使用
查看>>