摘要: 1 #include <cstdio> 2 #include <map> 3 #include <iostream> 4 using namespace std; 5 struct node{ 6 int a,b; 7 bool operator < (const node &aa) const 8 { 9 if(a!=aa.a) return a<aa.a;10 else return b<aa.b;11 }12 };13 map<node,bool> m;14 int n,ans,sum;15 int arr[20] 阅读全文
posted @ 2012-09-08 19:40 qijinbiao1 阅读(391) 评论(0) 推荐(0) 编辑