当前位置:网站首页>2022 Hangzhou Electric Power Multi-School Session 3 Question L Two Permutations
2022 Hangzhou Electric Power Multi-School Session 3 Question L Two Permutations
2022-08-05 00:22:00 【Rain Sure】
题目链接
题目大意
给定两个长度为 n n n的排列 a , b a,b a,band a length consisting of two permutations 2 ∗ n 2*n 2∗n的数组 c c c,Take a number from the leftmost end of either of the two permutations and place it at a time c [ i ] c[i] c[i]里,Please construct c c c数组的方案数.
题解
I thought about linearity during the gameDP的做法,感觉很牛逼.后来看题解,Found that everyone is doing better...尤其是jianglysimulation Dafa,让我大受震撼!!!
设 f [ i ] [ j ] [ k ] f[i][j][k] f[i][j][k] 表示第 i i i个数从 j j jArray selected, i − 1 i - 1 i−1个数从 k k kArray selected,An additional array is also required g g gRecord which array was selected.具体转移看代码~ ( 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;
}
边栏推荐
猜你喜欢

SQL association table update

数据类型及输入输出初探(C语言)

leetcode:266. 回文全排列

KT6368A Bluetooth certification problem_FCC and BQB_CE_KC certification or other instructions
![Couple Holding Hands [Greedy & Abstract]](/img/7d/1cafc000dc58f1c5e2e92150be7953.png)
Couple Holding Hands [Greedy & Abstract]

子连接中的参数传递

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

How to automatically push my new articles to my fans (very simple, can't learn to hit me)

TinyMCE disable escape

what?测试/开发程序员要被淘汰了?年龄40被砍到了32?一瞬间,有点缓不过神来......
随机推荐
2022牛客暑期多校训练营5(BCDFGHK)
tiup update
Mysql_13 事务
2022杭电多校第一场 1004 Ball
gorm联表查询-实战
网站最终产品页使用单一入口还是多入口?
tiup uninstall
2022牛客多校第三场 A Ancestor
lua 如何 实现一个unity协程的工具
软件测试面试题:网络七层协仪具体?
could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
Getting started with 3D modeling for games, what modeling software can I choose?
How to automatically push my new articles to my fans (very simple, can't learn to hit me)
【论文笔记】—低照度图像增强—Unsupervised—EnlightenGAN—2019-TIP
软件测试面试题:软件都有多少种分类?
论文解读( AF-GCL)《Augmentation-Free Graph Contrastive Learning with Performance Guarantee》
【LeetCode】矩阵模拟相关题目汇总
子连接中的参数传递
"Relish Podcast" #397 The factory manager is here: How to use technology to empower the law?
redis可视化管理软件Redis Desktop Manager2022