当前位置:网站首页>2022杭电多校第三场 L题 Two Permutations
2022杭电多校第三场 L题 Two Permutations
2022-08-05 00:18:00 【Rain Sure】
题目链接
题目大意
给定两个长度为 n n n的排列 a , b a,b a,b和一个由两个排列组成的长度为 2 ∗ n 2*n 2∗n的数组 c c c,每次从两个排列中任意一个的最左端取出一个数放到 c [ i ] c[i] c[i]里,请问构造出 c c c数组的方案数。
题解
比赛的时候想了线性DP的做法,感觉很牛逼。后来看题解,发现大家的做法更优秀。。。尤其是jiangly的模拟大法,让我大受震撼!!!
设 f [ i ] [ j ] [ k ] f[i][j][k] f[i][j][k] 表示第 i i i个数从 j j j数组中选, i − 1 i - 1 i−1个数从 k k k数组中选,还需要一个额外的数组 g g g记录选择哪个数组。具体转移看代码~ ( 0 < = j < = 1 ) ( 0 < = k < = 1 ) (0 <= j <= 1) (0 <= k <= 1) (0<=j<=1)(0<=k<=1)
代码
#include<iostream>
#include<cstring>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
#define IOS ios::sync_with_stdio(false); cin.tie(0);cout.tie(0);
#define x first
#define y second
#define endl '\n'
const int inf = 1e9 + 10;
const int maxn = 300010, M = 2000010;
const int mod = 998244353;
typedef pair<int,int> PII;
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
int h[maxn], e[M], w[M], ne[M], idx;
int dx[4] = {
-1, 0, 1, 0}, dy[4] = {
0, -1, 0, 1};
int cnt;
void add(int a, int b, int c)
{
e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx ++;
}
void add(int a, int b)
{
e[idx] = b, ne[idx] = h[a], h[a] = idx ++;
}
int n;
int a[maxn], b[maxn], c[maxn * 2];
int f[maxn * 2][2][2];
int g[maxn * 2][2][2];
int main()
{
int t; scanf("%d", &t);
while(t --)
{
scanf("%d", &n);
for(int i = 1; i <= n; i ++) scanf("%d", &a[i]);
for(int i = 1; i <= n; i ++) scanf("%d", &b[i]);
for(int i = 1; i <= n * 2; i ++) scanf("%d", &c[i]);
memset(f, 0, sizeof f); memset(g, 0, sizeof g);
if(c[1] == a[1] && c[2] == a[2]) {
f[2][0][0] = 1;
g[2][0][0] = 2;
}
if(c[1] == a[1] && c[2] == b[1]){
f[2][1][0] = 1;
g[2][1][0] = 1;
}
if(c[1] == b[1] && c[2] == a[1]){
f[2][0][1] = 1;
g[2][0][1] = 1;
}
if(c[1] == b[1] && c[2] == b[2]){
f[2][1][1] = 1;
g[2][1][1] = 0;
}
for(int i = 3; i <= n * 2; i ++){
// f[i][0][0]
int id0 = g[i - 1][0][0], id1 = g[i - 1][0][1];
// cout << id0 << ' ' << id1 << endl;
if(a[id0 + 1] == c[i]) f[i][0][0] = (f[i][0][0] + f[i - 1][0][0]) % mod, g[i][0][0] = id0 + 1;
if(a[id1 + 1] == c[i]) f[i][0][0] = (f[i][0][0] + f[i - 1][0][1]) % mod, g[i][0][0] = id1 + 1;
// f[i][0][1]
id0 = g[i - 1][1][0], id1 = g[i - 1][1][1];
if(a[id0 + 1] == c[i]) f[i][0][1] = (f[i][0][1] + f[i - 1][1][0]) % mod, g[i][0][1] = id0 + 1;
if(a[id1 + 1] == c[i]) f[i][0][1] = (f[i][0][1] + f[i - 1][1][1]) % mod, g[i][0][1] = id1 + 1;
// f[i][1][0]
id0 = g[i - 1][0][0], id1 = g[i - 1][0][1];
if(b[(i - id0)] == c[i]) f[i][1][0] = (f[i][1][0] + f[i - 1][0][0]) % mod, g[i][1][0] = id0;
if(b[i - id1] == c[i]) f[i][1][0] = (f[i][1][0] + f[i - 1][0][1]) % mod, g[i][1][0] = id1;
// f[i][1][1]
id0 = g[i - 1][1][0], id1 = g[i - 1][1][1];
if(b[i - id0] == c[i]) f[i][1][1] = (f[i][1][1] + f[i - 1][1][0]) % mod, g[i][1][1] = id0;
if(b[i - id1] == c[i]) f[i][1][1] = (f[i][1][1] + f[i - 1][1][1]) % mod, g[i][1][1] = id1;
}
int res = 0;
for(int i = 0; i < 2; i ++){
for(int j = 0; j < 2; j ++){
res = (res + f[n * 2][i][j]) % mod;
}
}
printf("%d\n", res);
}
return 0;
}
边栏推荐
- Mysql_13 事务
- 【Valentine's Day special effects】--Canvas realizes full screen love
- 关于使用read table 语句
- .net(C#)获取两个日期间隔的年月日
- How to burn the KT148A voice chip into the chip through the serial port and the tools on the computer
- [230]连接Redis后执行命令错误 MISCONF Redis is configured to save RDB snapshots
- 图解 Canvas 入门
- ansible学习笔记分享-含剧本示例
- [CVA Valuation Training Camp] Financial Modeling Guide - Lecture 1
- SV 类的虚方法 多态
猜你喜欢

gorm联表查询-实战

2022牛客暑期多校训练营5(BCDFGHK)

Mathematical Principles of Matrix

matlab中rcosdesign函数升余弦滚降成型滤波器

leetcode: 266. All Palindromic Permutations

软件质量评估的通用模型

First, the basic concept of reptiles

could not build server_names_hash, you should increase server_names_hash_bucket_size: 32

【LeetCode】滑动窗口题解汇总

子连接中的参数传递
随机推荐
《MySQL入门很轻松》第2章:MySQL管理工具介绍
oracle创建表空间
机器学习(公式推导与代码实现)--sklearn机器学习库
what is MVCC
QSunSync 七牛云文件同步工具,批量上传
ansible学习笔记分享-含剧本示例
E - Distance Sequence (前缀和优化dp
Cython
找不到DiscoveryClient类型的Bean
SQL association table update
软件测试面试题:您如何看待软件过程改进?在您曾经工作过的企业中,是否有一些需要改进的东西呢?您期望的理想的测试人员的工作环境是怎样的?
The master teaches you the 3D real-time character production process, the game modeling process sharing
[LeetCode] Summary of Matrix Simulation Related Topics
矩阵数学原理
Handwritten Distributed Configuration Center (1)
导入JankStats检测卡帧库遇到问题记录
10 个关于 Promise 和 setTimeout 知识的面试题,通过图解一次说透彻
uinty lua 关于异步函数的终极思想
tiup telemetry
【LeetCode】滑动窗口题解汇总