http://codeforces.com/contest/707/problem/D

先说一下离线和在线:在线的意思就是每一个询问单独处理复杂度O(多少多少),离线是指将所有的可能的询问先一次都处理出来,最后对于每个询问O(1)回答。

然后说一下cf的这题:

D. Persistent Bookcase
time limit per test

2 seconds

memory limit per test

512 megabytes

input

standard input

output

standard output

Recently in school Alina has learned what are the persistent data structures: they are data structures that always preserves the previous version of itself and access to it when it is modified.

After reaching home Alina decided to invent her own persistent data structure. Inventing didn't take long: there is a bookcase right behind her bed. Alina thinks that the bookcase is a good choice for a persistent data structure. Initially the bookcase is empty, thus there is no book at any position at any shelf.

The bookcase consists of n shelves, and each shelf has exactly m positions for books at it. Alina enumerates shelves by integers from 1to n and positions at shelves — from 1 to m. Initially the bookcase is empty, thus there is no book at any position at any shelf in it.

Alina wrote down q operations, which will be consecutively applied to the bookcase. Each of the operations has one of four types:

  • i j — Place a book at position j at shelf i if there is no book at it.
  • i j — Remove the book from position j at shelf i if there is a book at it.
  • i — Invert book placing at shelf i. This means that from every position at shelf i which has a book at it, the book should be removed, and at every position at shelf i which has not book at it, a book should be placed.
  • k — Return the books in the bookcase in a state they were after applying k-th operation. In particular, k = 0 means that the bookcase should be in initial state, thus every book in the bookcase should be removed from its position.

After applying each of operation Alina is interested in the number of books in the bookcase. Alina got 'A' in the school and had no problem finding this values. Will you do so?

Input

The first line of the input contains three integers nm and q (1 ≤ n, m ≤ 103, 1 ≤ q ≤ 105) — the bookcase dimensions and the number of operations respectively.

The next q lines describes operations in chronological order — i-th of them describes i-th operation in one of the four formats described in the statement.

It is guaranteed that shelf indices and position indices are correct, and in each of fourth-type operation the number k corresponds to some operation before it or equals to 0.

Output

For each operation, print the number of books in the bookcase after applying it in a separate line. The answers should be printed in chronological order.

Examples
input
2 3 3
1 1 1
3 2
4 0
output
1
4
0
input
4 2 6
3 2
2 2 2
3 3
3 2
2 2 2
3 2
output
2
1
3
3
2
4
input
2 2 2
3 2
2 2 1
output
2
1
Note

This image illustrates the second sample case.

题目大意:给你一个n*m的书架,刚开始书架上面都是空的。然后有如下四种操作

第一种:放一本书在[i][j]这个位置,如果这里有书的话,那就不用放了。

第二种:拿走[i][j]这个位置的书,如果没有书的话,那就不用拿了。

第三种:将第i行取亦或。

第四种:回到第i步操作的状态

有q个询问,输出该询问下目前书架上还有几本书?

思路:一次性全部取出来,然后建图进行dfs。所以这里的复杂度是O(q)

 //看看会不会爆int!数组会不会少了一维!
//取物问题一定要小心先手胜利的条件
#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define ALL(a) a.begin(), a.end()
#define pb push_back
#define mk make_pair
#define fi first
#define se second
const int maxn = + ;
const int maxq = + ;
bitset<maxn> bite[maxn];
bitset<maxn> tmp;
int n, m, q;
int a[maxq], b[maxq], op[maxq], ans[maxq];
vector<int> E[maxq]; void dfs(int u){
//printf("u = %d\n", u);
int len = E[u].size();
if (u == ){
ans[u] = ;
for (int i = ; i < len; i++){
ans[E[u][i]] = ans[u];
dfs(E[u][i]);
}
}
else if (op[u] == ){
bool flag = false;
if (!bite[a[u]][b[u]]) flag = true, bite[a[u]][b[u]] = , ans[u] += ;
for (int i = ; i < len; i++){
ans[E[u][i]] = ans[u];
dfs(E[u][i]);
}
if (flag) bite[a[u]][b[u]] = ;
}
else if (op[u] == ){
bool flag = false;
if (bite[a[u]][b[u]]) flag = true, bite[a[u]][b[u]] = , ans[u] -= ;
for (int i = ; i < len; i++){
ans[E[u][i]] = ans[u];
dfs(E[u][i]);
}
if (flag) bite[a[u]][b[u]] = ;
}
else if (op[u] == ){
ans[u] = ans[u] + m - bite[a[u]].count() - bite[a[u]].count();
bite[a[u]] ^= tmp;
for (int i = ; i < len; i++){
ans[E[u][i]] = ans[u];
dfs(E[u][i]);
}
bite[a[u]] ^= tmp;
}
else if (op[u] == ){
for (int i = ; i < len; i++){
ans[E[u][i]] = ans[u];
dfs(E[u][i]);
}
}
} int main(){
cin >> n >> m >> q;
for (int i = ; i <= m; i++)
tmp[i] = ;
for (int i = ; i <= q; i++){
scanf("%d", op + i);
if (op[i] == || op[i] == ){
scanf("%d%d", a + i, b + i);//表示摆放的位置
}
if (op[i] == ){
scanf("%d", a + i);//表示第i行取反
}
if (op[i] == ){
scanf("%d", a + i);
E[a[i]].pb(i);
}
else
E[i - ].pb(i);///让每个询问之间相连
}
dfs();
for (int i = ; i <= q; i++){
printf("%d\n", ans[i]);
}
return ;
}

离线dfs CF div2 707 D的更多相关文章

  1. lca 欧拉序+rmq(st) 欧拉序+rmq(线段树) 离线dfs 倍增

    https://www.luogu.org/problemnew/show/P3379 1.欧拉序+rmq(st) /* 在这里,对于一个数,选择最左边的 选择任意一个都可以,[left_index, ...

  2. cf707D. Persistent Bookcase(离线+dfs)

    题目链接:http://codeforces.com/problemset/problem/707/D  有一个n*m的书架,有K个操作,求每个操作后一共有多少本书:有4种操作: 1:x y 如果 x ...

  3. cf div2 234 D

    D. Dima and Bacteria time limit per test 2 seconds memory limit per test 256 megabytes input standar ...

  4. poj 1986LCA离线dfs+并查集

    题意,给出边和权值,求出两个点间的最短距离. 用离线算法的时候有个地方不知道怎么处理了.在线的本来想用倍增的,但发现倍增算法貌似需要预处理深度而不是权值,不知道怎么处理.套一个rmq的模板吧,用来处理 ...

  5. 牛客小白月赛12 H 华华和月月种树 (离线dfs序+线段树)

    链接:https://ac.nowcoder.com/acm/contest/392/H 来源:牛客网 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 131072K,其他语言2621 ...

  6. cf div2 239 D

    D. Long Path time limit per test 1 second memory limit per test 256 megabytes input standard input o ...

  7. cf div2 236 D

    D. Upgrading Array time limit per test 1 second memory limit per test 256 megabytes input standard i ...

  8. cf div2 237 D

    D. Minesweeper 1D time limit per test 2 seconds memory limit per test 512 megabytes input standard i ...

  9. cf div2 238 D

    D. Toy Sum time limit per test 1 second memory limit per test 256 megabytes input standard input out ...

随机推荐

  1. apicloud教程3 (转载)

    本帖最后由 中山赢友网络科技有限公司 于 2015-10-26 16:44 编辑 继<APICloud之小白图解教程系列(一):认识APICloud><APICloud之小白图解教程 ...

  2. NodeJS 学习笔记一

    他创造NodeJS的目的是为了实现高性能Web服务器,他首先看重的是事件机制和异步IO模型的优越性,而不是JS.但是他需要选择一种编程语言实现他的想法,这种编程语言不能自带IO功能,并且需要能良好支持 ...

  3. java 图形界面 mvc模式控制

    使用模型-视图-控件结构来开发GUI程序. 下面的程序演示了MVC模式开发的java程序. 其中CircleModel为模型,包含了圆的半径,是否填充,等属性. CircleView为视图,显示这个圆 ...

  4. POJ 2536 Gopher II

    二分图的最大匹配 地鼠内部和地鼠洞内部都是没有边相连的,那么就可以看成一个二分图.地鼠如果可以跑到那个地鼠洞,就连一条边,然后跑二分图的最大匹配,最后地鼠的数量减去最大匹配数就是答案. #includ ...

  5. Chapter 2 Open Book——1

    The next day was better… and worse. 明天会更好也会更坏. It was better because it wasn't raining yet, though t ...

  6. 取出parentid为null的顶级栏目 等号改为 is null 避免null当做字符串,

    mysql中查询字段为null或者不为null 在mysql中,查询某字段为空时,不可用等号 = null, 而是 is null,不为空则是 is not null    select * from ...

  7. Python 学习笔记2

    今天继续安装配置python. Fear can hold you prisoner. Hope can set you free.

  8. UIWebView是什么

    UIWebView类是用来显示网络内容.要使用它,可以简单的创造一个UIWebView对象,放置到窗口上,并且发送一个指向网络内容的请求.通过这个类,可以控制网页历史的前进後退,也可以通过程序去控制网 ...

  9. iOS长按选择

    确实,其实就是一个长按手势 + 图片二维码识别,原生SDK从8.0开始支持 /** *  从照片中直接识别二维码 *  @param qrCodeImage 带二维码的图片 *  @param myQ ...

  10. CentOS 7 rsync

    CentOS 7 rsync 1)软件简介 Rsync 是一个远程数据同步工具,可通过 LAN/WAN 快速同步多台主机间的文件.Rsync 本来是用以取代rcp 的一个工具,它当前由 Rsync.s ...