贪心
我要满满的AC
不积跬步,无以至千里
展开
-
POJ1042 Gone Fishing贪心
#include #include struct node { int f,d,stop,bian,caught; }l[25]; int cmp1(const void *a,const void *b) { struct node *aa=(node*)a; struct node *bb=(node*)b; return bb->f-aa->f; } int main() { i原创 2014-07-18 22:25:44 · 350 阅读 · 0 评论 -
HDU1009 FatMouse' Trade贪心
#include #include struct node { int j,f; double bi; }room[10000]; int cmp(const void *a,const void *b) { struct node *aa=(node *)a; struct node *bb=(node *)b; if (bb->bi>aa->bi) return 1; el原创 2014-07-18 22:19:56 · 402 阅读 · 0 评论 -
hdu1051 Wooden Sticks贪心
#include #include #include struct node { int l,w; }s[5000]; int cmp(const void *a,const void *b) { struct node *aa=(node *)a; struct node *bb=(node *)b; if(aa->l!=bb->l) return aa->l-bb->l原创 2014-07-18 22:25:17 · 408 阅读 · 0 评论 -
ZOJ1409 Communication System贪心
#include #include int m[15]; struct node { int b,p; }device[105][105]; int cmp(const void *a,const void *b) { struct node *aa=(node*)a; struct node *bb=(node*)b; return aa->p-bb->p; } int main()原创 2014-07-24 11:00:16 · 571 阅读 · 0 评论 -
HDU5037 frog贪心
这题虽说不是很难,但在推理时实在把自己x原创 2014-09-22 21:07:22 · 361 阅读 · 0 评论