Codeforces Round #368 (Div. 2) [D] Persistent Bookcase

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 1 to 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?

Input

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.

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


这题还真不是持久化数据,而是离线+dfs,还要用一下bitset这个东西
注意一下bitset包含在头文件#include<bitset>里面
qust是第i个操作的种类,然后用一个数组f[i][j]表示映射关系,即第i个操作是建立在第f[i][j]个操作之后进行的
然后dfs从0开始操作,用ans[i]记录第i个操作之后的答案
#include<cstdio>
#include<iostream>
#include<vector>
#include<bitset>
using namespace std;
const int maxn=1e5+5;
int n,m,q;
vector<int>f[maxn];
int qust[maxn],a[maxn],b[maxn];
int ans[maxn];
bitset<1001>B[1001];
bitset<1001>bit;
void dfs(int x){
	int i; 
    if(x==0){
        for(i=0;i<f[x].size();i++){
            ans[f[x][i]]=ans[x];
            dfs(f[x][i]);
        }
    }
    if(qust[x]==1){
        int mark=0;
        if(!B[a[x]][b[x]]){
            mark=1;
            ans[x]++;
            B[a[x]][b[x]]=1;
        }
        for(i=0;i<f[x].size();i++){
            ans[f[x][i]]=ans[x];
            dfs(f[x][i]);
        }
        if(mark)B[a[x]][b[x]]=0;
    }
    if(qust[x]==2){
        int mark=0;
        if(B[a[x]][b[x]]){
            mark=1;
            ans[x]--;
            B[a[x]][b[x]]=0;
        }
        for(i=0;i<f[x].size();i++){
            ans[f[x][i]]=ans[x];
            dfs(f[x][i]);
        }
        if(mark)B[a[x]][b[x]]=1;
    }
    if(qust[x]==3){
        ans[x]=ans[x]-B[a[x]].count();
        B[a[x]]^=bit;
        ans[x]=ans[x]+B[a[x]].count();
        for(i=0;i<f[x].size();i++){
            ans[f[x][i]]=ans[x];
            dfs(f[x][i]);
        }
        B[a[x]]^=bit;
    }
    if(qust[x]==4){
        for(i=0;i<f[x].size();i++){
            ans[f[x][i]]=ans[x];
            dfs(f[x][i]);
        }
    }
}
int main(){
	int i;
    scanf("%d%d%d",&n,&m,&q);
    for(i=1;i<=m;i++)bit[i]=1;
    for(i=1;i<=q;i++){
        scanf("%d",&qust[i]);
        if(qust[i]==1)scanf("%d%d",&a[i],&b[i]);
        if(qust[i]==2)scanf("%d%d",&a[i],&b[i]);
        if(qust[i]==3)scanf("%d",&a[i]);
        if(qust[i]==4){
        	scanf("%d",&a[i]);
			f[a[i]].push_back(i);
		}
        else f[i-1].push_back(i);
    }
    dfs(0);
    for(i=1;i<=q;i++)printf("%d\n",ans[i]);
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值