zoj - 4059 Kawa Exam scc + dsu
题解:先scc把图变成树, 然后对于这若干棵树在进行dsu的操作。
dsu就是先找到最大的子树放在一边,然后先处理小的子树,最后处理大的子树。无限递归。
重要的一点就是 是否重新添加每个点的值,每次处理完小的子树之后会清空影响,然后处理完最大的子树之后就不再清空影响,这样减少复杂度。
代码:
#include<bits/stdc++.h>
using namespace std;
#define Fopen freopen("_in.txt","r",stdin); freopen("_out.txt","w",stdout);
#define LL long long
#define ULL unsigned LL
#define fi first
#define se second
#define pb push_back
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define lch(x) tr[x].son[0]
#define rch(x) tr[x].son[1]
#define max3(a,b,c) max(a,max(b,c))
#define min3(a,b,c) min(a,min(b,c))
typedef pair<int,int> pll;
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3f;
const LL mod = (int)1e9+;
const int N = 2e5 + ;
int head[N], to[N<<], nt[N<<], tot = ;
void add(int u, int v){
to[tot] = v;
nt[tot] = head[u];
head[u] = tot++;
}
int belong[N], dfn[N], low[N], now_time, scc_cnt;
int now = , st[N], ed[N];
vector<int> vc[N];
vector<pll> e[N];
stack<int> s;
void dfs(int u, int id){
dfn[u] = low[u] = ++now_time;
s.push(u);
for(int i = head[u]; ~i; i = nt[i]){
if(i == (id^)) continue;
if(!dfn[to[i]]) dfs(to[i], i);
if(!belong[to[i]]) low[u] = min(low[u], low[to[i]]);
}
if(dfn[u] == low[u]){
++scc_cnt;
int now;
while(){
now = s.top(); s.pop();
belong[now] = scc_cnt;
vc[scc_cnt].pb(now);
if(now == u) break;
}
}
}
void scc(int n){
for(int i = ; i <= scc_cnt; ++i) {
vc[i].clear();
e[i].clear();
st[i] = ed[i] = ; } now = ;
for(int i = ; i <= n; ++i) dfn[i] = low[i] = belong[i] = ;
while(!s.empty()) s.pop();
now_time = scc_cnt = ;
for(int i = ; i <= n; ++i)
if(!belong[i]) dfs(i,-);
for(int i = , u, v; i <= tot; i += ){
u = to[i], v = to[i+];
u = belong[u], v = belong[v];
if(u != v) e[u].pb(pll(v,i/+)), e[v].pb(pll(u,i/+));
}
}
int vis[N], col[N], col2[N], cnt[N], cnt2[N], mx1, mx2;
int sz[N], p[N];
int a[N];
void Add1(int u){
for(int i = , x; i < vc[u].size(); ++i){
x = vc[u][i];
cnt[col[a[x]]]--;
++col[a[x]];
cnt[col[a[x]]]++;
if(mx1 < col[a[x]]) mx1 = col[a[x]];
}
}
void Add2(int u){
for(int i = , x; i < vc[u].size(); ++i){
x = vc[u][i];
cnt2[col2[a[x]]]--;
++col2[a[x]];
cnt2[col2[a[x]]]++;
if(mx2 < col2[a[x]]) mx2 = col2[a[x]];
}
}
void Sub1(int u){
for(int i = , x; i < vc[u].size(); ++i){
x = vc[u][i];
--cnt[col[a[x]]];
--col[a[x]];
++cnt[col[a[x]]];
if(cnt[mx1] == ) --mx1;
}
}
void Sub2(int u){
for(int i = , x; i < vc[u].size(); ++i){
x = vc[u][i];
--cnt2[col2[a[x]]];
--col2[a[x]];
++cnt2[col2[a[x]]];
if(cnt2[mx2] == ) --mx2;
}
}
void ddfs(int o, int u){
//cout << o << ' ' << u << endl;
++now;
Add1(u);
p[now] = u;
st[u] = now;
sz[u] = vc[u].size();
for(int i = , v; i < e[u].size(); ++i){
v = e[u][i].fi;
if(v == o) continue;
ddfs(u, v);
sz[u] += sz[v];
}
ed[u] = now;
}
void Clear(int o, int u){
Sub1(u);
for(int i = ; i < e[u].size(); ++i){
int v = e[u][i].fi;
if(v == o) continue;
Clear(u, v);
}
}
int ttttmp;
int val[N];
void dsu(int o, int u, int op, int id){
int bigson = -, mx = -, iid;
for(int i = , v; i < e[u].size(); ++i){
v = e[u][i].fi;
if(v == o) continue;
if(mx < sz[v]) {
mx = sz[v];
bigson = v;
iid = e[u][i].se;
}
}
for(int i = , v; i < e[u].size(); ++i){
v = e[u][i].fi;
if(v == o || v == bigson) continue;
dsu(u, v, , e[u][i].se);
}
if(bigson != -)
dsu(u, bigson, , iid);
for(int i = , v; i < e[u].size(); ++i){
v = e[u][i].fi;
if(v != o && v != bigson) {
for(int i = st[v]; i <= ed[v]; i++){
Sub1(p[i]);
Add2(p[i]);
}
}
}
Sub1(u);
Add2(u);
val[id] = mx1+mx2-ttttmp;
if(op == ){
for(int i = st[u]; i <= ed[u]; i++){
Sub2(p[i]);
Add1(p[i]);
}
}
}
void init(){
memset(head, -, sizeof(head));
tot = ;
}
int main(){
int T, n, m;
scanf("%d", &T); while(T--){
init();
scanf("%d%d", &n, &m);
for(int i = ; i <= n; ++i) scanf("%d", &a[i]);
for(int i = , u, v; i <= m; ++i){
scanf("%d%d", &u, &v);
add(u,v); add(v,u);
}
scc(n);
int ans = ;
for(int i = ; i <= scc_cnt; ++i){
if(st[i]) continue;
mx1 = mx2 = ;
ddfs(,i);
ttttmp = mx1;
ans += mx1;
dsu(,i,,);
Clear(,i);
}
// cout << ans << endl;
for(int i = ; i <= m; i++){
printf("%d%c", ans+val[i]," \n"[i==m]);
val[i] = ;
}
}
return ;
}
/*
3
7 5
1 2 1 2 1 2 1
1 2
1 3
2 4
5 6
5 7
3 3
1 2 3
1 2
1 3
2 3
7 5
1 2 1 2 1 2 1
1 2
1 3
2 4
5 6
5 7
*/
zoj - 4059 Kawa Exam scc + dsu的更多相关文章
- 2018 ACM-ICPC青岛现场赛 B题 Kawa Exam 题解 ZOJ 4059
题意:BaoBao正在进行在线考试(都是选择题),每个题都有唯一的一个正确答案,但是考试系统有m个bug(就是有m个限制),每个bug表示为第u个问题和第v个问题你必须选择相同的选项,题目问你,如果你 ...
- zoj 3721 Final Exam Arrangement【贪心】
题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3721 来源:http://acm.hust.edu.cn/vjudg ...
- [置顶] 2013_CSUST暑假训练总结
2013-7-19 shu 新生训练赛:母函数[转换成了背包做的] shuacm 题目:http://acm.hdu.edu.cn/diy/contest_show.php?cid=20083总结:h ...
- Final Exam Arrangement(ZOJ)
In Zhejiang University, there are N different courses labeled from 1 to N. Each course has its own t ...
- ZOJ 3795 Grouping(scc+最长路)
Grouping Time Limit: 2 Seconds Memory Limit: 65536 KB Suppose there are N people in ZJU, whose ...
- zoj 3795 Grouping tarjan缩点 + DGA上的最长路
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%lld & %llu Submit Status Practic ...
- ZOJ 3819 Average Score(平均分)
Description 题目描述 Bob is a freshman in Marjar University. He is clever and diligent. However, he is n ...
- ZOJ 2819 Average Score 牡丹江现场赛A题 水题/签到题
ZOJ 2819 Average Score Time Limit: 2 Sec Memory Limit: 60 MB 题目连接 http://acm.zju.edu.cn/onlinejudge ...
- ZOJ 3687 The Review Plan I
The Review Plan I Time Limit: 5000ms Memory Limit: 65536KB This problem will be judged on ZJU. Origi ...
随机推荐
- UE4 打包详细流程
这两天试着把之前做的一个UE4项目在安卓机上运行下,于是乎有了下面的一个打包血泪史. 首先呢,肯定是下载好了UE的源码了,我用的是4.18. 安装步骤可以先参考下官方的教程http://api.unr ...
- 彻底理解kubernetes CNI
kubernetes各版本离线安装包 CNI接口很简单,特别一些新手一定要克服恐惧心里,和我一探究竟,本文结合原理与实践,认真读下来一定会对原理理解非常透彻. 环境介绍 我们安装kubernetes时 ...
- 让 CXK 来教你实现游戏中的帧动画(上)
一款游戏除了基本功能之外,还需要给玩家更多视觉上的刺激,这个时候就需要用特效来装饰.本文就将介绍 Cocos Creator 的动画系统,除了标准的位移.旋转.缩放动画和序列帧动画以外,这套动画系统还 ...
- 案例实战:每日上亿请求量的电商系统,JVM年轻代垃圾回收参数如何优化?
出自:http://1t.click/7TJ 目录: 案例背景引入 特殊的电商大促场景 抗住大促的瞬时压力需要几台机器? 大促高峰期订单系统的内存使用模型估算 内存到底该如何分配? 新生代垃圾回收优化 ...
- MariaDB 修改存储路径后启动失败问题解决
修改 MariaDB 路径到 home 路径下, 执行 systemctl start mariadb 启动MariaDB 时,报错提示: Job for mariadb.service failed ...
- web面试
什么是面向对象? 程序中的事物都是用对象结构来描述的,所有的程序都是用面向对象的思想,管理数据和功能的. 面向对象三大特点:封装 继承 多态 什么是封装? 创建一个对象结构,用来保存一个事物的属性和方 ...
- 算法与数据结构基础 - 分治法(Divide and Conquer)
分治法基础 分治法(Divide and Conquer)顾名思义,思想核心是将问题拆分为子问题,对子问题求解.最终合并结果,分治法用伪代码表示如下: function f(input x size ...
- scala之构造器详解
1.基本语法: 构造器分为主构造器和辅助构造器 class 类名(形参列表) { // 主构造器 // 类体 def this(形参列表) { // 辅助构造器 } def this(形参列表 ...
- Day4 chart基本属性分析
属性设置是基于chart实例的,所以我们必须先获取一个chart画板实例,获取方式: G2.Chart.创建 Chart 的方式如下: new G2.Chart({ container: {strin ...
- J.U.C并发包(1)
J.U.C并发包(1) AbstractQueuedSynchronizer AbstractQueuedSynchronizer是JUC并发包中锁的底层支持,AbstractQueuedSynchr ...