题目链接

BZOJ4727

题解

前置芝士

1.竞赛图存在哈密顿路径

2.竞赛图存在哈密顿回路,当且仅当它是强联通的

所以我们将图缩点后,拓扑排序后一定是一条链,且之前的块内的点和之后块内的点的边一定全都由前面指向后面

而每个块都是强联通的,所以我们从起点出发,一定能找到一条路径走完后面所有点

我们只需预处理出每个强联通块内的一条哈密顿回路,就可以求出答案了

现在问题转化成了求竞赛图的哈密顿回路

我们先求出一条哈密顿路径

哈密顿路径

从竞赛图中任意一个点出发向外扩展,维护一个链表

假若扩展到点\(u\)

1.如果\(u\)指向链头或链尾,直接加入链表

2.否则链的中间一定存在相邻两点,使得\(i\)指向\(u\),\(u\)指向\(i + 1\),这时候把\(u\)插入之间即可

哈密顿回路

我们在哈密顿路径的基础上构造哈密顿回路

首先如果存在如图情况,前\(4\)个点构成回路



我们先找到最大的一个这样的回路,然后只需处理后面不在圈内的几个点

对于一个点\(u\),如果存在一条\(u\)指向圈内点的边,那么\(u\)可以插入圈内

否则跳过\(u\),将\(u\)和之后插入圈内的点一起插入圈内

由于图是强联通的,所以最后一定能全部加入

复杂度\(O(n^2)\)

#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<vector>
#include<queue>
#include<cmath>
#include<map>
#define LL long long int
#define REP(i,n) for (register int i = 1; i <= (n); i++)
#define cls(s,v) memset(s,v,sizeof(s))
#define mp(a,b) make_pair<int,int>(a,b)
#define cp pair<int,int>
#define res register
using namespace std;
const int maxn = 2005,maxm = 100005,INF = 0x3f3f3f3f;
inline int read(){
int out = 0,flag = 1; char c = getchar();
while (c < 48 || c > 57){if (c == '-') flag = 0; c = getchar();}
while (c >= 48 && c <= 57){out = (out << 1) + (out << 3) + c - 48; c = getchar();}
return flag ? out : -out;
}
int tmp[20],ti;
inline void write(int x){
ti = 0;
while (x) tmp[++ti] = x % 10,x /= 10;
while (ti) putchar('0' + tmp[ti--]);
}
vector<int> S[maxn];
int n,G[maxn][maxn];
int dfn[maxn],low[maxn],Scc[maxn],st[maxn],top,cnt,scci;
int nxt[maxn],head[maxn],tail[maxn];
int Nxt[maxn],Head[maxn],Tail[maxn];
int g[maxn][maxn],de[maxn],q[maxn],hh,tt;
int tp[maxn],pos[maxn],ans[maxn],ansi,tot;
int c[maxn],ci;
void dfs(int u){
dfn[u] = low[u] = ++cnt;
st[++top] = u;
for (res int to = 1; to <= n; to++){
if (!G[u][to]) continue;
if (!dfn[to]){
dfs(to);
low[u] = min(low[u],low[to]);
}
else if (!Scc[to]) low[u] = min(low[u],dfn[to]);
}
if (low[u] == dfn[u]){
scci++;
do{
Scc[st[top]] = scci;
S[scci].push_back(st[top]);
}while (st[top--] != u);
}
}
void workline(){
int siz;
for (res int p = 1; p <= scci; p++){
siz = S[p].size();
head[p] = tail[p] = S[p][0];
for (res int i = 1; i < siz; i++){
int u = S[p][i];
if (G[u][head[p]]) nxt[u] = head[p],head[p] = u;
else if (G[tail[p]][u]) nxt[tail[p]] = u,tail[p] = u;
else for (res int j = head[p]; j; j = nxt[j])
if (G[j][u] && G[u][nxt[j]]){
nxt[u] = nxt[j]; nxt[j] = u; break;
}
}
}
}
void workcir(){
int p,last;
for (int i = 1; i <= scci; i++){
ci = 0; p = 1;
for (int k = head[i]; k; k = nxt[k]) c[++ci] = k;
for (int k = ci; k; k--)
if (G[c[k]][head[i]]) {p = k; break;}
Head[i] = c[1]; Tail[i] = c[p];
for (int k = 1; k < p; k++) Nxt[c[k]] = c[k + 1];
last = c[p + 1];
for (int k = p + 1; k <= ci; k++){
int u = c[k],flag = false;
for (int j = Nxt[Head[i]],pre = Head[i]; j; j = Nxt[pre = j])
if (G[u][j]){
Nxt[pre] = last;
Nxt[u] = j;
flag = true;
break;
}
if (flag) last = c[k + 1];
else Nxt[u] = c[k + 1];
}
Nxt[Tail[i]] = Head[i];
}
}
void work(){
for (res int i = 1; i <= n; i++){
int u = Scc[i];
for (res int j = 1; j <= n; j++)
if (G[i][j] && Scc[j] != u && !g[u][Scc[j]])
de[Scc[j]]++,g[u][Scc[j]] = 1;
}
for (res int i = 1; i <= scci; i++) if (!de[i]) q[++tt] = i;
int u; hh = 1;
while (hh <= tt){
u = q[hh++]; pos[u] = ++tot; tp[tot] = u;
for (int i = 1; i <= scci; i++) if (g[u][i]){
if (!(--de[i])) q[++tt] = i;
}
}
for (res int u = 1; u <= n; u++){
int s = Scc[u];
ans[ansi = 1] = u;
for (res int i = Nxt[u]; i != u; i = Nxt[i]) ans[++ansi] = i;
for (res int j = pos[s] + 1; j <= scci; j++){
int t = tp[j];
ans[++ansi] = Head[t];
for (res int i = Nxt[Head[t]]; i != Head[t]; i = Nxt[i])
ans[++ansi] = i;
}
write(ansi); putchar(' ');
for (res int i = 1; i <= ansi; i++){
write(ans[i]);
if (i < ansi) putchar(' ');
}
puts("");
}
}
int main(){
n = read();
for (res int i = 2; i <= n; i++)
for (res int j = 1; j < i; j++)
G[i][j] = ((G[j][i] = read()) ^ 1);
REP(i,n) if (!dfn[i]) dfs(i);
workline();
//puts("LXT");
workcir();
//puts("LXT");
work();
return 0;
}

BZOJ4727 [POI2017]Turysta 【竞赛图哈密顿路径/回路】的更多相关文章

  1. bzoj千题计划232:bzoj4727: [POI2017]Turysta

    http://www.lydsy.com/JudgeOnline/problem.php?id=4727 竞赛图tarjan缩点后得到的拓扑图一定是一条链 因为竞赛图任意两点的前后顺序确定,只有一种拓 ...

  2. BZOJ4727 [POI2017]Turysta

    这题太神了还是去看刺儿神题解吧. http://www.cnblogs.com/neighthorn/p/6538364.html #include <cstdio> #include & ...

  3. BZOJ 4727: [POI2017]Turysta

    4727: [POI2017]Turysta Time Limit: 20 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 117  Solved ...

  4. BZOJ.4727.[POI2017]Turysta(哈密顿路径/回路 竞赛图)

    题目链接 \(Description\) 给出一个n个点的有向图,任意两个点之间有且仅一条有向边.对于每个点v,求出从v出发的一条经过点数最多,且没有重复经过同一个点一次以上的简单路径. n<= ...

  5. HDU3414 Tour Route(竞赛图寻找哈密顿回路)

    链接:http://acm.hdu.edu.cn/showproblem.php?pid=3414 本文链接:http://www.cnblogs.com/Ash-ly/p/5459540.html ...

  6. 图论 竞赛图(tournament)学习笔记

    竞赛图(tournament)学习笔记 现在只是知道几个简单的性质... 竞赛图也叫有向完全图. 其实就是无向完全图的边有了方向. ​ 有一个很有趣的性质就是:一个tournament要么没有环,如果 ...

  7. POJ1776(哈密顿路径)

    题目: http://poj.org/problem?id=1776 题意: 给出一个n*n的矩阵,若第i个任务做完之后可以做第j个任务,则矩阵的第i行第j列为1,否则为0.机器完成一项任务之后会自动 ...

  8. BZOJ 4726: [POI2017]Sabota?

    4726: [POI2017]Sabota? Time Limit: 20 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 301  Solved ...

  9. 玩转SQL Server复制回路の变更数据类型、未分区表转为分区表

    玩转SQL Server复制回路の变更数据类型.未分区表转为分区表 复制的应用: 初级应用:读写分离.数据库备份 高级应用:搬迁大型数据库(跨机房).变更数据类型.未分区表转为分区表 京东的复制专家 ...

随机推荐

  1. Spring入门学习笔记(1)

    目录 Spring好处 依赖注入 面向面编程(AOP) Spring Framework Core Container Web Miscellaneous 编写第一个程序 IoC容器 Spring B ...

  2. deep learning loss总结

    在深度学习中会遇到各种各样的任务,我们期望通过优化最终的loss使网络模型达到期望的效果,因此loss的选择是十分重要的. cross entropy loss cross entropy loss和 ...

  3. vue项目部署流程

    用vue-cli搭建的做法1.npm run build2.把dist里的文件打包上传至服务器 例 /data/www/,我一般把index.html放在static里所以我的文件路径为:/data/ ...

  4. trustbox文件破解

    常见的破解方式,是要还原内容的二进制文件,删除加密壳部分的对应二进制数值,然后把剩下的内容保存下来,就实现了破解的任务.  淘宝破解链接:https://item.taobao.com/item.ht ...

  5. 修复webpack自动刷新页面慢的问题

    新建.babelrc文件,配置如下 { "presets": [ "es2015" ], "ignore":[ "react-ro ...

  6. Results the mutual for the first time(alpha阶段总结)

    由于前天听大家的成果展时,做得笔记不够完善,有一两个组找不到信息,如果没有评到的组望谅解. 分数分配: 由于组内某些原因,我们现重新分组: 试用版: 总结前阶段的工作: 在前一段时间,我们第一个spr ...

  7. 【区间DP】codevs3657 括号序列题解

    题目描述 Description 我们用以下规则定义一个合法的括号序列: (1)空序列是合法的 (2)假如S是一个合法的序列,则 (S) 和[S]都是合法的 (3)假如A 和 B 都是合法的,那么AB ...

  8. 用jar包运行带GUI的java游戏

    这是从某论坛下载的java游戏demo,由于年代久远,所以没有记下出处.重要的是,这是一个带GUI的java程序. 链接: https://pan.baidu.com/s/1LjQ2bQPXvW-ti ...

  9. 3、第一个Python程序

    现在,了解了如何启动和退出Python的交互式环境,我们就可以正式开始编写Python代码了. 在写代码之前,请千万不要用“复制”-“粘贴”把代码从页面粘贴到你自己的电脑上.写程序也讲究一个感觉,你需 ...

  10. HDU 1027 打印沙漏

    https://pintia.cn/problem-sets/994805260223102976/problems/994805294251491328 本题要求你写个程序把给定的符号打印成沙漏的形 ...