离线dfs CF div2 707 D
http://codeforces.com/contest/707/problem/D
先说一下离线和在线:在线的意思就是每一个询问单独处理复杂度O(多少多少),离线是指将所有的可能的询问先一次都处理出来,最后对于每个询问O(1)回答。
然后说一下cf的这题:
2 seconds
512 megabytes
standard input
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:
- 1 i j — Place a book at position j at shelf i if there is no book at it.
- 2 i j — Remove the book from position j at shelf i if there is a book at it.
- 3 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.
- 4 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?
The first line of the input contains three integers n, m 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.
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.
2 3 3
1 1 1
3 2
4 0
1
4
0
4 2 6
3 2
2 2 2
3 3
3 2
2 2 2
3 2
2
1
3
3
2
4
2 2 2
3 2
2 2 1
2
1

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的更多相关文章
- lca 欧拉序+rmq(st) 欧拉序+rmq(线段树) 离线dfs 倍增
https://www.luogu.org/problemnew/show/P3379 1.欧拉序+rmq(st) /* 在这里,对于一个数,选择最左边的 选择任意一个都可以,[left_index, ...
- cf707D. Persistent Bookcase(离线+dfs)
题目链接:http://codeforces.com/problemset/problem/707/D 有一个n*m的书架,有K个操作,求每个操作后一共有多少本书:有4种操作: 1:x y 如果 x ...
- cf div2 234 D
D. Dima and Bacteria time limit per test 2 seconds memory limit per test 256 megabytes input standar ...
- poj 1986LCA离线dfs+并查集
题意,给出边和权值,求出两个点间的最短距离. 用离线算法的时候有个地方不知道怎么处理了.在线的本来想用倍增的,但发现倍增算法貌似需要预处理深度而不是权值,不知道怎么处理.套一个rmq的模板吧,用来处理 ...
- 牛客小白月赛12 H 华华和月月种树 (离线dfs序+线段树)
链接:https://ac.nowcoder.com/acm/contest/392/H 来源:牛客网 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 131072K,其他语言2621 ...
- cf div2 239 D
D. Long Path time limit per test 1 second memory limit per test 256 megabytes input standard input o ...
- cf div2 236 D
D. Upgrading Array time limit per test 1 second memory limit per test 256 megabytes input standard i ...
- cf div2 237 D
D. Minesweeper 1D time limit per test 2 seconds memory limit per test 512 megabytes input standard i ...
- cf div2 238 D
D. Toy Sum time limit per test 1 second memory limit per test 256 megabytes input standard input out ...
随机推荐
- iOS拨打电话
1,这种方法,拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示NSMutableString * str=[[NSMutableString alloc] initWithFo ...
- shell变量的替换
1 shell变量基础shell变量是一种很“弱”的变量,默认情况下,一个变量保存一个串,shell不关心这个串是什么含义.所以若要进行数学运算,必须使用一些命令例如let.declare.expr. ...
- Chapter 2 Open Book——15
The rest of the week was uneventful. I got used to the routine of my classes. 这周剩下的时间都是平淡无事的.我就是正常的上 ...
- unity3d继续尝试
这一次完成了一些复杂的脚本,会了一些简单的鼠标事件,这样就能使用鼠标进行简单的交互了. 其实右边栏目上面一些奇怪的属性看的我是眼花缭乱. 也不知道干啥用的,还有就是真的很佩服里面的物理引擎确实简单易上 ...
- 第一次使用unity3d
今天暂且做个记录,因为第一使用了unity3d,进行了很长时间的安装和调试,进行了简单的使用,能简单的在页面上面建立了一个方块和一个球. 简单了解了unity中的一些基本概念.总结一下,一个物体可以有 ...
- Java中try-catch-finally的一点理解
在只有try-catch语句中,如果catch块中出现了return语句或者抛出了异常,那么catch之后的语句是执行不到的:但是如果将代码放入finally中,即使catch中出现了return语句 ...
- 第13章 Swing程序设计----JFrame窗体
JFrame窗体是一个容器,它是Swing程序中各个组件的载体,可以将JFrame看作是承载这些Swing组件的容器. 在开发应用程序时可以通过继承java.swing.JFrame类创建一个窗体,在 ...
- FUSE and File System
FUSE: File system in USErspace. So what is a file system? A file system maps file paths to file cont ...
- Google Gson的使用方法
用法1:从网络获取到json字符串之后,假如该字符串为data, Gson gson = new Gson(); HomeBean json = gson.fromJson(data, HomeBea ...
- textFiled输入字数的控制问题之—把带输入的拼音也判断了
一个textFiled,控制只能输入五个字,现在你已经输入了四个字,在输入第五个字的时候,输入一个拼音之后就不能输入后一个拼音,这里把拼音也当成字来判断了,这种情况下就需要_textFiled.mar ...