cf707D. Persistent Bookcase(离线+dfs)
题目链接:http://codeforces.com/problemset/problem/707/D
有一个n*m的书架,有K个操作,求每个操作后一共有多少本书;有4种操作;
1:x y 如果 x y 位置没有书,放一本书在上面;
2:x y如果 x y 位置有书,移走;
3:x,表示把第x行的所有又书的拿走,没书的放上去;
4:k,回到第k个操作后的状态;
离线处理k个操作;当操作不为 4 时,把操作i连在i-1后,=4时把操作 i 连在a[i].x后;
这样建一棵树,然后遍历即可,在回溯的时候注意更改书架的状态即可;
#include<iostream>
#include<algorithm>
#include<string.h>
#include<stdio.h>
#include<math.h>
#include<vector>
using namespace std;
#define N 1005
#define PI 4*atan(1.0)
#define mod 1000000007
#define met(a, b) memset(a, b, sizeof(a))
typedef long long LL; struct node
{
int op, x, y, ans;
}a[N*N];///k个操作; int cnt[N][N];///记录书架的状态;
int n, m, k;
vector<vector<int> > G;///操作形成的图; void dfs(int u)
{
if(a[u].op == )
{
int flag = ;
if(cnt[a[u].x][a[u].y] == )
{
flag = ;
a[u].ans ++;///在已有的基础上加上更改的值;
cnt[a[u].x][a[u].y] = ;///标记状态;
}
for(int i=, len=G[u].size(); i<len; i++)
{
int v = G[u][i];
a[v].ans = a[u].ans;///往下走的时候,v是u的儿子,所以拥有u的ans;
dfs(v);
}
if(flag)///回溯时要重新更改状态;
cnt[a[u].x][a[u].y] = ;
}
else if(a[u].op == )
{
int flag = ;
if(cnt[a[u].x][a[u].y] == )
{
flag = ;
a[u].ans --;
cnt[a[u].x][a[u].y] = ;
}
for(int i=, len=G[u].size(); i<len; i++)
{
int v = G[u][i];
a[v].ans = a[u].ans;
dfs(v);
}
if(flag)
cnt[a[u].x][a[u].y] = ;
}
else if(a[u].op == )
{
int num = ;
for(int i=; i<=m; i++)
{
if(cnt[a[u].x][i] == )
num ++;
cnt[a[u].x][i] ^= ;
}
a[u].ans = a[u].ans - num + (m-num);///更新ans;
for(int i=, len=G[u].size(); i<len; i++)
{
int v = G[u][i];
a[v].ans = a[u].ans;
dfs(v);
}
for(int i=; i<=m; i++)
cnt[a[u].x][i] ^= ;
}
else
{
for(int i=, len=G[u].size(); i<len; i++)
{
int v = G[u][i];
a[v].ans = a[u].ans;
dfs(v);
}
}
} int main()
{
while(scanf("%d %d %d", &n, &m, &k)!=EOF)
{
met(a, );
met(cnt, );
G.clear();
G.resize(k+); for(int i=; i<=k; i++)
{
scanf("%d", &a[i].op);
if(a[i].op <= )
scanf("%d %d", &a[i].x, &a[i].y);
else
scanf("%d", &a[i].x); if(a[i].op <= )
G[i-].push_back(i);
else
G[a[i].x].push_back(i);
} for(int i=, len=G[].size(); i<len; i++)
dfs(G[][i]); for(int i=; i<=k; i++)
printf("%d\n", a[i].ans);
}
return ;
}
cf707D. Persistent Bookcase(离线+dfs)的更多相关文章
- CF707D Persistent Bookcase
CF707D Persistent Bookcase 洛谷评测传送门 题目描述 Recently in school Alina has learned what are the persistent ...
- Codeforces Round #368 (Div. 2) D. Persistent Bookcase 离线 暴力
D. Persistent Bookcase 题目连接: http://www.codeforces.com/contest/707/problem/D Description Recently in ...
- CF707D Persistent Bookcase 可持久化线段树
维护一个二维零一矩阵(n,m<=1000),支持四种操作(不超过10^5次): 将(i,j)置一 将(i,j)置零 将第i行零一反转yu 回到第K次操作前的状态 每次操作后输出全局一共有多少个一 ...
- Persistent Bookcase CodeForces - 707D (dfs 离线处理有根树模型的问题&&Bitset)
Persistent Bookcase CodeForces - 707D time limit per test 2 seconds memory limit per test 512 megaby ...
- CodeForces #368 div2 D Persistent Bookcase DFS
题目链接:D Persistent Bookcase 题意:有一个n*m的书架,开始是空的,现在有k种操作: 1 x y 这个位置如果没书,放书. 2 x y 这个位置如果有书,拿走. 3 x 反转这 ...
- 【Codeforces-707D】Persistent Bookcase DFS + 线段树
D. Persistent Bookcase Recently in school Alina has learned what are the persistent data structures: ...
- codeforces 707D D. Persistent Bookcase(dfs)
题目链接: D. Persistent Bookcase time limit per test 2 seconds memory limit per test 512 megabytes input ...
- Codeforces Round #368 (Div. 2) D. Persistent Bookcase
Persistent Bookcase Problem Description: Recently in school Alina has learned what are the persisten ...
- 离线dfs CF div2 707 D
http://codeforces.com/contest/707/problem/D 先说一下离线和在线:在线的意思就是每一个询问单独处理复杂度O(多少多少),离线是指将所有的可能的询问先一次都处理 ...
随机推荐
- UVA 11235 (游程编码+ST算法)
题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=23846 题目大意:给定一个升序序列,有q次询问,每次询问(L,R) ...
- #region 自适应屏幕分辨率
#region 自适应屏幕分辨率 [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public ...
- C# 如何判断数据是否为 NaN
double a = 0 / 0d; if (double.IsNaN(a)){ //do } 在浮点数计算中, 0除以0将得到NaN ,正数除以0将得到PositiveInfinity ,负数除以0 ...
- POJ 3071 Football(概率DP)
题目链接 不1Y都对不住看过那么多年的球.dp[i][j]表示i队进入第j轮的概率,此题用0-1<<n表示非常方便. #include <cstdio> #include &l ...
- iOS开发中使用[[UIApplication sharedApplication] openURL:]加载其它应用
iOS 应用程序之间(1) 在iOS开发中,经常需要调用其它App,如拨打电话.发送邮件等.UIApplication:openURL:方法是实现这一目的的最简单方法,该方法一般通过提供的u ...
- Leetcode | Valid Sudoku & Sudoku Solver
判断valid,没有更好的方法,只能brute force. class Solution { public: bool isValidSudoku(vector<vector<char& ...
- PHP == 和 ===
== 只判断两边的值是否相等,例如: 5555 == "5555" ,为真 === 判断两边的值和类型是否相当,5555 === "5555" False,因 ...
- 配置SMarty解析
在 common/main.php中配置 View 组件 'view' => [ 'renderers' => [ 'tpl' => [ 'class' => 'yii\sma ...
- HDU 1016 Prime Ring Problem(经典DFS+回溯)
Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Other ...
- spring对dao层的支持(datasource的作用)
本文大多数内容转自“http://www.cnblogs.com/liunanjava/p/4412408.html”感谢原作者 在做一个项目时,持久层并没有使用spring jpa和hibernat ...