2015年8月5日
摘要: 1 #include 2 #include 3 4 const int maxn=1e5+5; 5 const int inf=0x3f3f3f3f; 6 7 inline int max(int x,int y) 8 { 9 return x>y?x:y;10 }11 12 int ... 阅读全文
posted @ 2015-08-05 09:23 _fukua 阅读(189) 评论(0) 推荐(0) 编辑