@description@

给定 N 与两个 0~N-1 的置换 P, Q。

现在你需要找到两个置换 A 与 B,使得 A[i] = P[i] 或 i;B[i] = Q[i] 或 i。

最大化 A[i] ≠ B[i] 的 i 的数量。 输出最大值。

Constraints

1 ≤ N ≤ 100000。

保证 P 为 0~N-1 的排列。

保证 Q 为 0~N-1 的排列。

Input

输入形式如下:

N

P0 P1 ⋯ PN−1

Q0 Q1 ⋯ QN−1

Output

输出 A[i] ≠ B[i] 的 i 的最大数量。

Sample Input 1

4

2 1 3 0

0 2 3 1

Sample Output 1

3

一种方案为 A=(0,1,2,3), B=(0,2,3,1)。

Sample Input 2

10

0 4 5 3 7 8 2 1 9 6

3 8 5 6 4 0 2 1 7 9

Sample Output 2

8

Sample Input 3

32

22 31 30 29 7 17 16 3 14 9 19 11 2 5 10 1 25 18 15 24 20 0 12 21 27 4 26 28 8 6 23 13

22 3 2 7 17 9 16 4 14 8 19 26 28 5 10 1 25 18 15 13 11 0 12 23 21 20 29 24 27 6 30 31

Sample Output 3

28

@solution@

对于置换 P,我们将其分解成若干循环。

则对于每一个循环,要么同时选择变成 i, 要么同时保持 P[i] 不变。

每个元素有两种选择,而选择之间会互相影响,让人不是想到 2-sat 就是想到最小割(而时限又进一步地暗示最小割!)。

最小割的转化:我们求最小的 A[i] = B[i] 的数量。

对于每个循环,我们建个虚点,向循环内所有点连容量为 inf 的双向边。

剩下的就是一个经典的二元关系建图(即:同时选会产生代价之类的问题)。

对于每个 Pi,源点连向它表示选 i,它连向汇点表示选 Pi。

对于每个 Qi,源点连向它表示选 Qi,它连向汇点表示选 i。

然后根据 i, Pi, Qi 之间的相等关系分类建边。具体可以看代码。

至于为什么不对称着建,因为对称着建会产生负权边,就不大好。

@accepted code@

#include<queue>
#include<cstdio>
#include<algorithm>
using namespace std;
const int MAXN = 100000;
const int INF = (1<<30);
struct FlowGraph{
struct edge{
int to, cap, flow;
edge *nxt, *rev;
}edges[20*MAXN + 5], *adj[4*MAXN + 5], *cur[4*MAXN + 5], *ecnt;
FlowGraph() {ecnt = &edges[0];}
void addedge(int u, int v, int c1, int c2) {
edge *p = (++ecnt), *q = (++ecnt);
p->to = v, p->cap = c1, p->flow = 0;
p->nxt = adj[u], adj[u] = p;
q->to = u, q->cap = c2, q->flow = 0;
q->nxt = adj[v], adj[v] = q;
p->rev = q, q->rev = p;
// printf("! %d %d %d %d\n", u, v, c1, c2);
}
int dis[4*MAXN + 5];
int s, t;
bool relabel() {
for(int i=0;i<=t;i++)
dis[i] = INF, cur[i] = adj[i];
queue<int>que; que.push(t), dis[t] = 0;
while( !que.empty() ) {
int f = que.front(); que.pop();
for(edge *p=adj[f];p;p=p->nxt)
if( p->rev->cap > p->rev->flow )
if( dis[f] + 1 < dis[p->to] )
que.push(p->to), dis[p->to] = dis[f] + 1;
}
return !(dis[s] == INF);
}
int aug(int x, int tot) {
if( x == t ) return tot;
int sum = 0;
for(edge *&p=cur[x];p;p=p->nxt) {
if( p->cap > p->flow && dis[p->to] + 1 == dis[x] ) {
int del = aug(p->to, min(p->cap - p->flow, tot - sum));
sum += del, p->flow += del, p->rev->flow -= del;
if( sum == tot ) break;
}
}
return sum;
}
int max_flow(int _s, int _t) {
int flow = 0; s = _s, t = _t;
while( relabel() )
flow += aug(s, INF);
return flow;
}
}G;
int P[MAXN + 5], Q[MAXN + 5];
bool tag[MAXN + 5];
int main() {
int N, cnt; scanf("%d", &N), cnt = 2*N;
for(int i=1;i<=N;i++)
scanf("%d", &P[i]), P[i]++, tag[i] = false;
for(int i=1;i<=N;i++)
if( !tag[i] ) {
int p = i; cnt++;
do {
tag[p] = true;
p = P[p];
G.addedge(cnt, p, INF, INF);
}while( p != i );
}
for(int i=1;i<=N;i++)
scanf("%d", &Q[i]), Q[i]++, tag[i] = false;
for(int i=1;i<=N;i++)
if( !tag[i] ) {
int p = i; cnt++;
do {
tag[p] = true;
p = Q[p];
G.addedge(cnt, p + N, INF, INF);
}while( p != i );
}
int s = 0, t = cnt + 1;
for(int i=1;i<=N;i++) {
if( i == P[i] && i == Q[i] && P[i] == Q[i] )// a = c = 1
G.addedge(s, i, 1, 0), G.addedge(i, t, 1, 0);
if( i == P[i] && i != Q[i] && P[i] != Q[i] )// b = 1
G.addedge(s, i + N, 1, 0);
if( i != P[i] && i == Q[i] && P[i] != Q[i] )// c = 1
G.addedge(i, t, 1, 0);
if( i != P[i] && i != Q[i] && P[i] == Q[i] )// e = f = 1
G.addedge(i, i + N, 1, 1);
if( i != P[i] && i != Q[i] && P[i] != Q[i] )// f = 1
G.addedge(i, i + N, 1, 0);
}//s -> i(a), s -> i+N(b), i -> t(c), i+N -> t(d), i+N -> i(e), i -> i+N(f)
printf("%d\n", N - G.max_flow(s, t));
}

@details@

怎么感觉 F 题比 E 题水啊。是我的错觉吗。

@atcoder - AGC038F@ Two Permutations的更多相关文章

  1. AtCoder AGC038F Two Permutations (网络流、最小割)

    题目链接 https://atcoder.jp/contests/agc038/tasks/agc038_f 题解 好题. 首先观察到一个性质,对于排列\(P\), 其所形成的每个轮换中的点\(A_i ...

  2. AtCoder AGC031D A Sequence of Permutations (群论、置换快速幂)

    题目链接 https://atcoder.jp/contests/agc031/tasks/agc031_d 题解 这居然真的是个找规律神题... 首先要明白置换的一些基本定义,置换\(p\)和\(q ...

  3. Atcoder Grand Contest 038 F - Two Permutations(集合划分模型+最小割)

    洛谷题面传送门 & Atcoder 题面传送门 好久前做的题了--今天偶然想起来要补个题解 首先考虑排列 \(A_i\) 要么等于 \(i\),要么等于 \(P_i\) 这个条件有什么用.我们 ...

  4. Atcoder Grand Contest 031 D - A Sequence of Permutations(置换+猜结论)

    Atcoder 题面传送门 & 洛谷题面传送门 猜结论神题. 首先考虑探究题目中 \(f\) 函数的性质,\(f(p,q)_{p_i}=q_i\leftarrow f(p,q)\circ p= ...

  5. Atcoder CODE FESTIVAL 2016 qual C 的E题 Encyclopedia of Permutations

    题意: 对于一个长度为n的排列P,如果P在所有长度为n的排列中,按照字典序排列后,在第s位,则P的value为s 现在给出一个长度为n的排列P,P有一些位置确定了,另外一些位置为0,表示不确定. 现在 ...

  6. AtCoder Grand Contest 031 (AGC031) D - A Sequence of Permutations 其他

    原文链接https://www.cnblogs.com/zhouzhendong/p/AGC031D.html 前言 比赛的时候看到这题之后在草稿纸上写下的第一个式子就是 $$f(p,q) = pq^ ...

  7. AtCoder Grand Contest 031 简要题解

    AtCoder Grand Contest 031 Atcoder A - Colorful Subsequence description 求\(s\)中本质不同子序列的个数模\(10^9+7\). ...

  8. Permutations II

    Given a collection of numbers that might contain duplicates, return all possible unique permutations ...

  9. [LeetCode] Permutations II 全排列之二

    Given a collection of numbers that might contain duplicates, return all possible unique permutations ...

随机推荐

  1. mysql 导入txt数据

    在导入数据的时候,特别是数据包含中文的时候,在导入的时候,容易出现编码规则引起的错误.例如错误提示:Invalid utf8 character string: '' 这种情况下,我们可以把需要导入的 ...

  2. Delphi 设计模式:《HeadFirst设计模式》Delphi7代码---门面模式之HomeTheater[转]

      1unit uSubObject;   2   3interface   4   5type   6   7  { TAmplifier与TTuner,TCDPlayer,TDVDPlayer相互 ...

  3. 公司-广告-WPP:WPP

    ylbtech-公司-广告-WPP:WPP WPP集团 (LSE:WPP) (NASDAQ:WPPGY),是世界上最大的传播集团,总部位于英国伦敦.WPP集团拥有 60 多个子公司,主要服务于本地.跨 ...

  4. jeecms使用小结

    前言: 使用jeecmsV9已经有一段时间,现在PC端的二次开发基本进入尾声,手机端的开发即将开始 ,由于项目时间比较紧,开发时不是每个人都会使用它自带的标签,所以在PC端开发的时候浪费了大量时间,为 ...

  5. 提升mysql服务器性能(HA MMM MHA MaxScale)

    原文:提升mysql服务器性能(HA MMM MHA MaxScale) 版权声明:皆为本人原创,复制必究 https://blog.csdn.net/m493096871/article/detai ...

  6. vue和element全局loading

    http请求的代码如下: import axios from 'axios' import { Message} from 'element-ui' import store from '../sto ...

  7. CF981H K Paths

    CF981H K Paths 题解 一道不错的分治ntt题目 题目稍微转化一下,就是所有k条链的存在交,并且交的部分都被覆盖k次 所以一定是两个点,之间路径选择k次,然后端点两开花 f[x]表示x子树 ...

  8. Linux下的MySQL主从同步

    网上一些关于Linux下的MySQL主从同步教程非常之多,有些很简单的配置却弄的非常复杂,有些根本无法配通,下面是我通过简单的配置完成的主从同步过程,大家可以参考,此文章更适用于新手. 一.测试环境: ...

  9. redis数据库基本使用

    redis数据库 # 1.安装redis与可视化操作工具 # 选择安装路径.圈中默认配置环境变量 # 2.在服务中管理redis服务器的开启关闭 # 3.命令行简单使用redis: -- redis- ...

  10. 如何在Liferay 7中用html显示页面

    liferay portlet默认的显示页面是view.jsp,虽然可以在jsp中用include标签包括html文件,但是如何直接通过修改配置文件让默认的显示页面为view.html呢? 1.用Li ...