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 ...
随机推荐
- Netty服务端启动过程相关源码分析
1.Netty 是怎么创建服务端Channel的呢? 我们在使用ServerBootstrap.bind(端口)方法时,最终调用其父类AbstractBootstrap中的doBind方法,相关源码如 ...
- Linux打开网易云的问题
网易云需要ROOT权限启动,期间终端不能关闭退出,否则网易云音乐会自动退出. 终端输入:sudo netease-cloud-music &u
- Zookeeeper环境搭建(二)
zk一般是有2n+1个节点组成的集群.在Zookeeper服务有两个角色,一个是leader,负责写服务和数据同步:剩下的是follower,提供读服务.(为什么是2n+1个节点请看paxos算法) ...
- java swing 开发 -JTable
最近利用空闲时间自己琢磨了一下java swing 编程,其实在从事javaweb之前我一直向往的就是java swing 开发,不知道为什么可能当时觉得Windows上的exe程序很是神奇,关于wi ...
- 号外!号外!呼叫所有.NET桌面和移动开发人员!
8月7日微软在官方博客发起了一次关于.NET桌面和移动开发的调查问卷,直到今天看博客才知道.这次调查的重点是关于.NET桌面开发技术的跨平台,于是我喜大普奔,奔走相告,希望有这方面需求的朋友们都能去参 ...
- 基于.NET Core开发的个人博客发布至CentOS小计
早些时候,使用 .NET Framework 开发网站,只能部署在 Windows 服务器上面,近两年 .NET Core 如火如荼,乘此机会赶紧上车,最近将自己利用 .NET Core 开发的个人博 ...
- django在启动时抛出Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试 解决办法
1.适用场景 在启动某个服务的时候,比如python中django启动的时候8000端口被占用,导致无法启动服务. 2.解决办法 通过命令行找出端口对应的PID进程 C:\Users\micha> ...
- c# 读取 txt 文件中数据(int)
今天在学图的算法做测试是,需要读取文本文件中的点坐标,本来很简单的事情,折腾了半天,记录一下找到的一种简单粗暴的解决方法,以便以后查看. 第一种方法 : StringReader string lin ...
- SpringMVC 原理 - 设计原理、启动过程、请求处理详细解读
SpringMVC 原理 - 设计原理.启动过程.请求处理详细解读 目录 一. 设计原理 二. 启动过程 三. 请求处理 一. 设计原理 Servlet 规范 SpringMVC 是基于 Servle ...
- Python 竟能绘制如此酷炫的三维图
通常我们用 Python 绘制的都是二维平面图,但有时也需要绘制三维场景图,比如像下面这样的: 这些图怎么做出来呢?今天就来分享下如何一步步绘制出三维矢量(SVG)图. 八面体 我们先以下面这个八面体 ...