贪心
文章平均质量分 76
hnustL悦
这个作者很懒,什么都没留下…
展开
-
Best Cow Line
Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 25392 Accepted: 6918 Description FJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annual原创 2017-07-23 16:20:01 · 255 阅读 · 0 评论 -
自来水管道 (并查集+贪心==kruskal)
#include #include #include #include using namespace std; struct node { int s,e; int val; } flag[1200000]; int map1[1200000]; int cmp(node a,node b) { if(a.val<b.val) return 1;原创 2017-08-09 17:37:44 · 589 阅读 · 0 评论