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. SVN ---文件加锁,执行clean up命令

    一.SVN 中 clean up 的功能 当Subversion改变你的工作拷贝(或是.svn中的任何信息),它会尽可能的小心,在修改任何事情之前,它把意图写到日志文件中去,然后执行log文件中的命令 ...

  2. evernote

    evernote hebinn@163.com How to get Note Link Right Click Note & Copy Note Link Open Note : Note- ...

  3. HDU 5543 Pick The Sticks

    背包变形.与普通的背包问题不同的是:允许有两个物品可以花费减半. 因此加一维即可,dp[i][j][k]表示前i个物品,有j个花费减半了,总花费为k的情况下的最优解. #pragma comment( ...

  4. webdriver入门

    webdriver是web自动化测试中的重要工具,通过webdriver可以灵活的操纵browser完成相关的测试,目前的webdriver对主流的浏览器均有支持, 如firefox ,chrome, ...

  5. js 第一天

    <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title> ...

  6. Java线程:新特征-有返回值的线程

    http://lavasoft.blog.51cto.com/62575/222082/ Java线程:新特征-有返回值的线程 2009-11-04 17:33:56 标签:返回值 职场 线程 休闲 ...

  7. /etc/fstab 文件解释

    /etc/fstab 文件解释 文件fstab包含了你的电脑上的存储设备及其文件系统的信息.它是决定一个硬盘(分区)被怎样使用或者说整合到整个系统中的唯一文件. 这个文件的全路径是/etc/fstab ...

  8. The List ADT

    1.Definiation A list is a sequence.  a0, a1,a2,..., aN (N>0) 2.Character For any list except the ...

  9. AC_CONFIG_HEADER

    configure.in里有宏AC_CONFIG_HEADER()时用. AC_CONFIG_HEADER宏用于生成config.h文件,以便autoheader使用.

  10. ice调通过iceReplica用所有server instance的方法---客户端控制服务端的负载均衡

    I 使用此方法,可以增量的通知Ice服务配置的改变,刷新每个服务进程的数据 可以手动控制客户端调用的负载均衡,客户端程序决定将请求发往那个进程 上代码: import logging import I ...