摘要:
http://poj.org/problem?id=2155题意:一个矩阵元素均为0,1, 快速更新指定的子矩阵,快速询问的是一个点。他人具体代码:View Code #include <iostream>#include <cstdlib>#include <cstring>#include <cstdio>using namespace std;#define maxn 1005int c[maxn][maxn];int Row, Col;inline int Lowbit(const int &x){ return x & 阅读全文
posted @ 2012-10-30 21:10
tim11
阅读(159)
评论(0)
推荐(0)
2012年10月30日