当前位置:网站首页>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;
}
边栏推荐
- 在线中文姓名生成工具推荐
- 软件测试面试题:请你分别画出 OSI 的七层网络结构图和 TCP/IP 的四层结构图?
- LeetCode Hot 100
- MAUI Blazor 权限经验分享 (定位,使用相机)
- 2022 Niu Ke Summer Multi-School Training Camp 5 (BCDFGHK)
- Cloud native - Kubernetes 】 【 scheduling constraints
- 软件测试面试题:测试用例通常包括那些内容?
- 数据类型-整型(C语言)
- Chinese and Japanese color style
- MongoDB permission verification is turned on and mongoose database configuration
猜你喜欢

How to burn the KT148A voice chip into the chip through the serial port and the tools on the computer

QSunSync Qiniu cloud file synchronization tool, batch upload

TinyMCE禁用转义

3. Actual combat---crawl the result page corresponding to Baidu's specified entry (a simple page collector)

gorm联表查询-实战

Essential knowledge for entry-level 3D game modelers

测试经理要不要做测试执行?

SQL association table update

Mathematical Principles of Matrix

统计单词(DAY 101)华中科技大学考研机试题
随机推荐
SQL association table update
canvas 高斯模糊效果
leetcode经典例题——单词拆分
软件测试面试题:请你分别画出 OSI 的七层网络结构图和 TCP/IP 的四层结构图?
oracle创建表空间
论文解读( AF-GCL)《Augmentation-Free Graph Contrastive Learning with Performance Guarantee》
找不到DiscoveryClient类型的Bean
2022牛客暑期多校训练营5(BCDFGHK)
MongoDB permission verification is turned on and mongoose database configuration
【论文笔记】—低照度图像增强—Unsupervised—EnlightenGAN—2019-TIP
SV 类的虚方法 多态
【unity编译器扩展之模型动画拷贝】
克服项目管理中恐惧心理
could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
Brainstorm: Complete Backpack
软件测试面试题:软件测试类型都有哪些?
Metasploit-域名上线隐藏IP
tensor.nozero(), mask, [mask]
2022杭电多校第三场 K题 Taxi
【idea】idea配置sql格式化