stl
xiaoyulunUSC
这个作者很懒,什么都没留下…
展开
-
poj 3253 fence repair
这是一个可以用哈夫曼树来解决的题,以可以用优先队列。 题目大意: FJ需要修补牧场的围栏,他需要 N 块长度为 Li 的木头(N planks of woods)。开始时,FJ只有一块无限长的木板,因此他需要把无限长的木板锯成 N 块长度 为 Li 的木板,Farmer Don提供FJ锯子,但必须要收费的,收费的标准是对应每次据出木块的长度,比如说测试数据中 5 8 8,原创 2014-07-23 23:37:19 · 627 阅读 · 0 评论 -
UVa 11995 I Can Guess the Data Structure!
I Can Guess the Data Structure! There is a bag-like data structure, supporting two operations: 1 x Throw an element x into the bag. 2 Take out an element from the bag. Given a sequence of oper原创 2014-09-02 00:10:07 · 502 阅读 · 0 评论 -
HDU 4006 The kth great number
动态求第k大的数,只需维护一个长度为k的优先队列 #include #include #include #include #include #include using namespace std; int main(){ int n,k; while(scanf("%d%d",&n,&k)!=EOF){ priority_queue, greater >原创 2015-05-27 08:22:13 · 367 阅读 · 0 评论