摘要: 杭电1160View Code 1 //杭电1160 2 #include<stdio.h> 3 #include<stdlib.h> 4 #define N 1005 5 int b[N],c[N],d[N][N]; 6 struct mouse 7 { 8 int w,v; 9 int id;10 }a[1001];11 int cmp(const void *a,const void *b)12 {13 struct mouse *x,*y;14 x=(struct mouse *)a;15 y=(struct mouse *)b;16 ... 阅读全文
posted @ 2012-07-24 16:00 zlyblog 阅读(198) 评论(0) 推荐(0)