[ARC160F] Count Sorted Arrays
Problem Statement
There are an integer $N$ and $M$ pairs of integers: $(a_1, b_1), (a_2, b_2), \dots, (a_M, b_M)$. Each pair $(a_i, b_i)$ satisfies $1 \leq a_i \lt b_i \leq N$.
Initally, you have all $N!$ permutations of $(1,2,\dots,N)$.
You will perform $M$ operations. The $i$-th operation is as follows.
- Do the following for each of your $N!$ permutations.
- Compare the $a_i$-th and $b_i$-th elements. If the former is greater, swap the two elements.
For each $1 \leq i \leq M$, let $S_i$ be the number of permutations of yours that are already sorted in ascending order at the end of the $i$-th operation.
Print $S_1, S_2, \dots, S_M$.
Here, the input gives you pairs of integers $(x_i, y_i)$ instead of $(a_i, b_i)$.
The values of $(a_i, b_i)$ can be obtained using $x_i$, $y_i$, and $S_{i-1}$ as follows. (Let $S_0 = 1$ for convenience.)
- Let $c_i = ((x_i + S_{i-1}) \bmod N) + 1$.
- Let $d_i = ((y_i + S_{i-1} \times 2) \bmod N) + 1$. (Here, it is guaranteed that $c_i \neq d_i$.)
- Let $a_i = \min(c_i, d_i)$.
- Let $b_i = \max(c_i, d_i)$.
Constraints
- $2 \leq N \leq 15$
- $1 \leq M \leq 5 \times 10^5$
- $1 \leq a_i \lt b_i \leq N$
- $0 \leq x_i, y_i \leq N - 1$
Input
The input is given from Standard Input in the following format:
$N$ $M$
$x_1$ $y_1$
$x_2$ $y_2$
$\vdots$
$x_M$ $y_M$
Output
Print $M$ lines. The $i$-th line should contain $S_i$.
Sample Input 1
2 1
1 1
Sample Output 1
2
You start with the permutations $(1, 2)$ and $(2, 1)$.
We have $(a_1, b_1) = (1, 2)$. At the end of the first operation, you have two copies of $(1, 2)$, so you should print $2$.
Sample Input 2
3 4
0 1
2 1
1 1
0 1
Sample Output 2
2
4
4
6
$(a_i, b_i)$ in order are $(1, 2), (2, 3), (1, 3), (1, 2)$.
Sample Input 3
5 5
4 4
0 4
1 1
2 4
1 2
Sample Output 3
2
4
4
8
16
$(a_i, b_i)$ in order are $(1, 2), (3, 4), (1, 5), (2, 3), (4, 5)$.
一道妙妙题。
(据说是一个套路)发现其实我们整个过程中只关心大小关系,但是又要去统计。我们把一个排列压成 \(n\) 个二进制数,第 \(i\) 个二进制数第 \(j\) 位表示 \(p_j\) 是否大于 \(i\)
这样子看起来很废话,但是仔细观察会发现,在进行题目中的交换操作后,有些二进制数会从不合法变成合法,而如果我们已经知道了那些二进制数是合法的,那么可以进行一个 \(O(2^n\times n)\) 的dp去统计答案。定义 \(dp_{S}\) 为目前到达二进制数 \(S\) 时的答案,枚举数字 \(popcount(S)+1\) 放在了哪里,转移易得。那么最终答案就是 \(dp_{2^n-1}\)
如果我们知道现在那个二进制数从不合法变成了合法,怎么更新 dp 值。由于每个二进制数最多只会进行这样一次过程,所以我们可以使用暴力重构的方式。如果 \(S\) 从不合法成为合法,那么只有 \(S\) 的超集会发生变化,对他们进行暴力重构即可。超集枚举加dp总复杂度 \(O(3^nn)\)
现在剩下的问题就是如何知道每次二进制数改完,有那些二进制数发生了变化。一个二进制数最多会被交换 \(O(n^2)\) 次,所以也是考虑维护所有的可以变换的二进制数,然后给他们暴力交换,暴力判断。维护 \(n^2\) 个队列 \(q[x][y]\),表示把 \(x\) 和 \(y\) 交换了后会有更新的二进制数,而二进制数交换完之后,把所有新增加的 \((x,y)\) ,加入队列。这样子每个二进制数最多会被交换 \(O(n^2)\) 次,而每次交换最多会新增 \(O(n)\) 个数对,他最多会被加入队列 \(O(n^3)\) 次,所以这里复杂度 \(O(n^32^n)\)
#include<bits/stdc++.h>
using namespace std;
const int N=15,P=998244353;
int n,m,x,y,st[1<<N],S,v[1<<N],q[N][N][(1<<N)*N],ll[N][N],rr[N][N],to[1<<N],is[1<<N];
long long dp[1<<N],ls=1;
void getnew(int s)
{
dp[s]=0;
for(int i=0;i<n;i++)
if(s>>i&1)
dp[s]+=dp[s^(1<<i)];
}
void ins(int s)
{
if(v[s])
return;
// printf("%d\n",s);
v[s]=1;
int tp=0;
for(int i=S-s;i;i=(i-1)&(S-s))
if(v[S-i])
st[++tp]=S-i;
st[++tp]=S;
for(int i=1;i<=tp;i++)
getnew(st[i]);
}
void newdot(int s,int x)
{
if(is[to[s]])
ins(s);
for(int j=0;j<x;j++)
if(!(to[s]>>j&1))
q[j][x][++rr[j][x]]=s;
}
void newnode(int s,int x)
{
for(int j=x+1;j<n;j++)
if((to[s]>>j&1))
q[x][j][++rr[x][j]]=s;
}
int main()
{
scanf("%d%d",&n,&m);
S=(1<<n)-1;
v[0]=dp[0]=is[0]=1;
for(int i=1;i<=n;i++)
ins((1<<i)-1),is[(1<<i)-1]=1;
for(int i=0;i<=S;i++)
{
to[i]=i;
for(int j=0;j<n;j++)
if(i>>j&1)
newdot(i,j);
}
for(int i=1;i<=m;i++)
{
scanf("%d%d",&x,&y);
x=(x+ls)%n;
y=(y+ls*2)%n;
if(x>y)
swap(x,y);
for(int i=ll[x][y]+1;i<=rr[x][y];i++)
{
int s=to[q[x][y][i]];
if(!(s>>x&1)&&(s>>y&1))
{
to[q[x][y][i]]^=(1<<x)^(1<<y);
newdot(q[x][y][i],x);
newnode(q[x][y][i],y);
}
}
ll[x][y]=rr[x][y];
printf("%lld\n",ls=dp[(1<<n)-1]);
}
}
[ARC160F] Count Sorted Arrays的更多相关文章
- No.004 Median of Two Sorted Arrays
4. Median of Two Sorted Arrays Total Accepted: 104147 Total Submissions: 539044 Difficulty: Hard The ...
- 【leetcode】4. Median of Two Sorted Arrays
题目描述: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of t ...
- Median of Two Sorted Arrays 解答
Question There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median o ...
- Median of Sorted Arrays
(http://leetcode.com/2011/03/median-of-two-sorted-arrays.html) There are two sorted arrays A and B o ...
- Leetcode刷题C#版之 Median of Two Sorted Arrays
题目: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the ...
- [Swift]LeetCode4. 两个排序数组的中位数 | Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...
- LeetCode--No.004 Median of Two Sorted Arrays
4. Median of Two Sorted Arrays Total Accepted: 104147 Total Submissions: 539044 Difficulty: Hard The ...
- 【LeetCode】4、Median of Two Sorted Arrays
题目等级:Hard 题目描述: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find t ...
- No.004:Median of Two Sorted Arrays
问题: There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the ...
- [LeetCode] Median of Two Sorted Arrays 两个有序数组的中位数
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...
随机推荐
- Java日志系列:日志门面JCL、SLF4J
目录 一.日志门面说明 二.JCL 使用 JCL 入门 JCL 原理 三.SLF4J 使用 配合自身简单日志实现(slf4j-simple) 配置logback日志实现 配置Log4J日志实现(需适配 ...
- Django模板(请用Django2.0版本完成)
1. 在learn目录下新建一个templates文件夹,里面新建一个home.html (1) 很简单的,就直接右键learn,新建文件夹,完成后,继续右键templates,创建文档,后缀名为ht ...
- 10、Spring之AOP概述
10.1.概念 AOP(Aspect Oriented Programming)是一种设计思想,是软件设计领域中的面向切面编程 AOP是面向对象编程(OOP)的一种补充和完善,OOP是纵向继承机制,A ...
- Java stream 流
Java stream 流 中间操作 1.filter 作用:将流中的元素,基于自定义的比较器进行去重 方法定义 Stream<T> filter(Predicate<? super ...
- ChatGPT接入Siri(保姆级教程)
今天,我将为大家分享如何将ChatGPT应用集成到苹果手机的Siri中 (当然手机是需要魔法(TZ)的) 第一步:获取OpenAPI的Key 提取API网址:https://platform.open ...
- CodeForces 1367F2 Flying Sort (Hard Version)
题意 给一个长度为\(n\)的数组,你可以有两种操作 将某一个数放置在数组开头 将某一个数放置在数组结尾 问最小操作多少次可以得到一个非递减数列 (比\(F1\)难在\(n\)变大,且数组中元素可以有 ...
- 2.4 PE结构:节表详细解析
节表(Section Table)是Windows PE/COFF格式的可执行文件中一个非常重要的数据结构,它记录了各个代码段.数据段.资源段.重定向表等在文件中的位置和大小信息,是操作系统加载文件时 ...
- 内网DNS解析☞dnsmasq
内网DNS解析☞dnsmasq 目录 内网DNS解析☞dnsmasq 简介: 安装dnsmasq 问题: 1.怎么让172.30.1.* 与172.30.2.* 两个网段能互相访问? 2.firewa ...
- Unity 游戏开发、01 基础知识大全、简单功能脚本实现
2.3 窗口布局 Unity默认窗口布局 Hierarchy 层级窗口 Scene 场景窗口,3D视图窗口 Game 游戏播放窗口 Inspector 检查器窗口,属性窗口 Project 项目窗口 ...
- Lua5.3 笔记
Lua5.3 笔记 最近用skynet,sproto通讯,完全看不懂通讯二进制是怎么写的,发现都是string这个,string那个,完全理解不来. 于是查了一下string.pack的api,和之前 ...