博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj2155(Matrix)(树状数组)
阅读量:5147 次
发布时间:2019-06-13

本文共 1636 字,大约阅读时间需要 5 分钟。

题意:一个矩阵元素均为0,1, 快速更新指定的子矩阵,快速询问的是一个点。

他人具体代码:

View Code
#include 
#include
#include
#include
using namespace std;#define maxn 1005int c[maxn][maxn];int Row, Col;inline int Lowbit(const int &x){ return x & (-x);}int Sum(int i, int j){ int tempj, sum = 0; while (i > 0) { tempj = j; while (tempj > 0) { sum += c[i][tempj]; tempj -= Lowbit(tempj); } i -= Lowbit(i); } return sum;}void Update(int i, int j, int num){ int tempj; while (i <= Row) { tempj = j; while (tempj <= Col) { c[i][tempj] += num; tempj += Lowbit(tempj); } i += Lowbit(i); }}int main(){ int x, n, t; scanf("%d", &x); while (x--) { memset(c, 0, sizeof(c)); scanf("%d%d", &n, &t); getchar(); Row = n; Col = n; for (int i = 0; i < t; i++) { char ch; int x1, x2, y2, y1; scanf("%c", &ch); if (ch == 'C') { scanf("%d%d%d%d", &x1, &y1, &x2, &y2); x2++; y2++; Update(x1, y1, 1); Update(x1, y2, -1); Update(x2, y1, -1); Update(x2, y2, 1); } else { scanf("%d%d", &x1, &y1); printf("%d\n", (1 & Sum(x1, y1))); } getchar(); } printf("\n"); } return 0;}

 

转载于:https://www.cnblogs.com/tim11/archive/2012/10/30/2747036.html

你可能感兴趣的文章
HashPump用法
查看>>
cuda基础
查看>>
Vue安装准备工作
查看>>
oracle 创建暂时表
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>
CSS属性值currentColor
查看>>
java可重入锁reentrantlock
查看>>
浅谈卷积神经网络及matlab实现
查看>>
解决ajax请求cors跨域问题
查看>>
《收获,不止Oracle》pdf
查看>>
Real-Time Rendering 笔记
查看>>
如何理解HTML结构的语义化
查看>>
Activity之间的跳转:
查看>>
实验四2
查看>>
多路复用
查看>>
Python数据可视化之Pygal(雷达图)
查看>>
Java学习笔记--字符串和文件IO
查看>>