摘要: View Code 1 #include <iostream> 2 #include <stdlib.h> 3 #include <memory.h> 4 5 using namespace std; 6 const int INF = 1000000000; 7 int d[2005][1005]; 8 int min(int a,int b){ 9 return a<b?a:b;10 }11 int cmp(const void *a,const void*b){12 return *(int *)a - *(int *)b;13 }14 int 阅读全文
posted @ 2012-05-05 14:15 HNU_AlienForce 阅读(147) 评论(0) 推荐(0)