STL
文章平均质量分 86
risker_2013
这个作者很懒,什么都没留下…
展开
-
uva 10700 Camel trading
学习STL有一段时间啦,一直没有做题,今天这题也可以用贪心做,但我借鉴了前辈的思路,用栈做的,虽然调了一个多小时才调正确了,但还是蛮有成就感的~ Camel tradingTime Limit: 1 secondBackgroundAroud 800 A.D., El Mamum, Calif of Baghdad was presented the formu原创 2013-08-12 14:18:03 · 719 阅读 · 0 评论 -
优先队列
队列的特点是先进先出。通常都把队列比喻成排队买东西,大家都很守秩序,先排队的人就先买东西。但是优先队列有所不同,它不遵循先进先出的规则,而是根据队列中元素的优先权,优先权最大的先被取出。通常把优先队列比喻成现实生活中的打印。一个打印店里有很多打印机,每台机器的性能不一样,有的打印机打印很快,有的打印机打印速度很慢。当这些打印机陆陆续续打印完自己的任务时进入排队等候状态。如果我这个时候要打印一份文件转载 2013-08-14 16:29:44 · 571 阅读 · 0 评论 -
uva 10954 Add All
Add AllInput: standard inputOutput: standard outputYup!! The problem name reflects your task; just add a set of numbers. But you may feel yourselves condescended, to write a C/C++ program ju原创 2013-08-14 18:22:31 · 647 阅读 · 0 评论 -
STL学习中。。。
STL非常的神奇,它会给你做题带来很大的原创 2014-04-21 16:40:57 · 699 阅读 · 0 评论 -
nefu 625 Page Replacement
#include #include #include using namespace std;int T;int n,m;queueque;int v[111111];int idx;int ans;int get;int main(){ cin>>T; while (T--) { memset(v,0,sizeof(v)原创 2014-05-02 18:20:50 · 1074 阅读 · 0 评论 -
Codeforces Round #150 (Div. 2) C. The Brand New Function
The Brand New Functiontime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputPolycarpus has a sequence, consistin原创 2014-04-14 17:30:18 · 1519 阅读 · 0 评论 -
Codeforces Round #150 (Div. 2) B. Undoubtedly Lucky Numbers
点击打开题目链接B. Undoubtedly Lucky Numberstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputPolycarp原创 2014-04-18 13:10:35 · 1354 阅读 · 0 评论 -
CROC-MBTU 2012, Elimination Round (ACM-ICPC)
代码很烂,将就着看吧~点击打开题目链接A. System Administrator 水题代码: #include#include#include#include#includeusing namespace std;int main(){ double a,b,c; int n,i,j,k; double sum1,sum2,s1原创 2014-04-21 16:20:49 · 752 阅读 · 0 评论