Kawa Exam

题解:先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的更多相关文章

  1. 2018 ACM-ICPC青岛现场赛 B题 Kawa Exam 题解 ZOJ 4059

    题意:BaoBao正在进行在线考试(都是选择题),每个题都有唯一的一个正确答案,但是考试系统有m个bug(就是有m个限制),每个bug表示为第u个问题和第v个问题你必须选择相同的选项,题目问你,如果你 ...

  2. zoj 3721 Final Exam Arrangement【贪心】

    题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3721 来源:http://acm.hust.edu.cn/vjudg ...

  3. [置顶] 2013_CSUST暑假训练总结

    2013-7-19 shu 新生训练赛:母函数[转换成了背包做的] shuacm 题目:http://acm.hdu.edu.cn/diy/contest_show.php?cid=20083总结:h ...

  4. Final Exam Arrangement(ZOJ)

    In Zhejiang University, there are N different courses labeled from 1 to N. Each course has its own t ...

  5. ZOJ 3795 Grouping(scc+最长路)

    Grouping Time Limit: 2 Seconds      Memory Limit: 65536 KB Suppose there are N people in ZJU, whose ...

  6. zoj 3795 Grouping tarjan缩点 + DGA上的最长路

    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Status Practic ...

  7. ZOJ 3819 Average Score(平均分)

    Description 题目描述 Bob is a freshman in Marjar University. He is clever and diligent. However, he is n ...

  8. ZOJ 2819 Average Score 牡丹江现场赛A题 水题/签到题

    ZOJ 2819 Average Score Time Limit: 2 Sec  Memory Limit: 60 MB 题目连接 http://acm.zju.edu.cn/onlinejudge ...

  9. ZOJ 3687 The Review Plan I

    The Review Plan I Time Limit: 5000ms Memory Limit: 65536KB This problem will be judged on ZJU. Origi ...

随机推荐

  1. abp(net core)+easyui+efcore实现仓储管理系统目录

    abp(net core)+easyui+efcore实现仓储管理系统目录 abp(net core)+easyui+efcore实现仓储管理系统——ABP总体介绍(一) abp(net core)+ ...

  2. hadoop大数据平台安全基础知识入门

    概述 以 Hortonworks Data Platform (HDP) 平台为例 ,hadoop大数据平台的安全机制包括以下两个方面: 身份认证 即核实一个使用者的真实身份,一个使用者来使用大数据引 ...

  3. ubuntu18.04下安装matlab2018a

    一.下载 百度网盘链接:https://pan.baidu.com/s/1M6KafnsljmYV9_5m_1pXMw 提取玛:jp76 二.安装 下载下来的文件夹中有三个文件,分别是破解文文件与映像 ...

  4. Activiti6系列(4)- 三个war包的数据源及密码修改

    一.activiti-app修改数据源和密码 1.使用sublimetext工具打开tomcat,方便进行配置文件的修改. 找到被解压的war包,activiti-app/WEB-INF/classe ...

  5. [Spring cloud 一步步实现广告系统] 15. 使用开源组件监听Binlog 实现增量索引准备

    MySQL Binlog简介 什么是binlog? 一个二进制日志,用来记录对数据发生或潜在发生更改的SQL语句,并以而进行的形式保存在磁盘中. binlog 的作用? 最主要有3个用途: 数据复制( ...

  6. maven3实战之仓库

    maven3实战之仓库(maven仓库分类) maven3实战之仓库(maven仓库分类) ---------- 对于maven来说,仓库只分为两类:本地仓库和远程仓库.当maven根据坐标寻找构件的 ...

  7. python面试总结1(基础章节)

    python语言基础 语言特点 python是静态还是动态类型?是强类型还是弱类型 动态强类型语言 动态还是静态指的是编译期还是运作期确定类型 强类型指的是不会发生隐式类型转换 python作为后端语 ...

  8. 100天搞定机器学习|Day36用有趣的方式解释梯度下降算法

    本文为3Blue1Brown神经网络课程讲解第二部分<Gradient descent, how neural networks learn >的学习笔记,观看地址:www.bilibil ...

  9. Java并发之内存模型(JMM)浅析

    背景 学习Java并发编程,JMM是绕不过的槛.在Java规范里面指出了JMM是一个比较开拓性的尝试,是一种试图定义一个一致的.跨平台的内存模型.JMM的最初目的,就是为了能够支多线程程序设计的,每个 ...

  10. python学习笔记(6)--面向对象学习

    本节内容:   面向对象编程介绍 为什么要用面向对象进行开发? 面向对象的特性:封装.继承.多态 类.方法.   引言 你现在是一家游戏公司的开发人员,现在需要你开发一款叫做(人狗大战)的游戏,你就思 ...