[CF463D] Gargari and Permutations - dp
Posted mollnn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CF463D] Gargari and Permutations - dp相关的知识,希望对你有一定的参考价值。
找到同时存在于 (k leq 5) 个排列中的 LCS
Solution
记录每行中每个元素的出现位置,那么本质上是一个 (k) 维偏序问题
对于 (j<i),我们暴力检查 (pos[a[j]] < pos[a[i]]) 是否对其它 (k-1) 个维度也成立,如果是就转移
#include <bits/stdc++.h>
using namespace std;
int n,k,f[1005],a[1005],p[6][1005];
int main() {
cin>>n>>k;
for(int i=1;i<=k;i++) {
for(int j=1;j<=n;j++) {
int t;
cin>>t;
if(i==1) a[j]=t;
p[i][t]=j;
}
}
for(int i=1;i<=n;i++) {
f[i]=1;
for(int j=1;j<i;j++) {
int flag=1;
for(int l=2;l<=k;l++) {
if(p[l][a[j]]>=p[l][a[i]])
flag=0;
}
if(flag) f[i]=max(f[i],f[j]+1);
}
}
int mx=0;
for(int i=1;i<=n;i++) mx=max(mx,f[i]);
cout<<mx;
}
以上是关于[CF463D] Gargari and Permutations - dp的主要内容,如果未能解决你的问题,请参考以下文章
CF 463D Gargari and Permutations [dp]
CF463D Gargari and Permutations (LCS)
Codeforces 463D Gargari and Permutations:隐式图dp多串LCS
Codeforces 463D Gargari and Permutations(求k个序列的LCS)