摘要: <center 1295: [SCOI2009]最长距离</center 题目连接:http://www.lydsy.com/JudgeOnline/problem.php?id=1295 Descriptionwindy有一块矩形土地,被分为 N\ M 块 1\ 1 的小格子。 有的格子含有障... 阅读全文
posted @ 2015-12-21 22:05 qscqesze 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 代码: struct Bit { vector<int a; int sz; void init(int n) { sz=n; for(int i=1;i<=n+5;i++) a.push_back(0); } int lowbit(int x) { return x&( x); } int qu... 阅读全文
posted @ 2015-12-21 14:55 qscqesze 阅读(330) 评论(0) 推荐(1) 编辑