hdu 4006 求第K大的数 优先队列
摘要:
#include<stdio.h>#include<queue>#include<vector>#include<iostream>using namespace std;int main(){ int n,m,k; char a; while(scanf("%d %d",&n,&k)!=EOF) { priority_queue<int ,vector<int>,greater<int> >q; while(n--) { getchar();//接收空格键??容易忽略 sc 阅读全文
posted @ 2013-04-03 21:36 雨钝风轻 阅读(269) 评论(0) 推荐(0) 编辑