P1481 魔族密码 (LIS)

Posted alingmaomao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1481 魔族密码 (LIS)相关的知识,希望对你有一定的参考价值。

题的连接:https://www.luogu.org/problemnew/show/P1481

简单思路:

就是LIS,最长上升子序列,当然把条件改一下,从模板里的A[ i ]> A[ j ]变成ss[ i ].find(ss[ j ])==0;即可。好好理解最长上升子序列。是不是和题目中的最长连续单词呢?(自己瞎叫的名字)

ac代码:

#include<iostream>
#include<string>
using namespace std;
#define max(a, b) (a)>(b)?(a):(b)
string ss[2001];
int dp[2001];
int main()
{
    int n;
    cin >> n;
    for (int i = 0; i < n; ++i)
        cin >> ss[i];
    int ans = 0;
    for (int i = 0; i < n; ++i)
    {
        dp[i] = 1;
        for (int j = 0; j < i;++j)
        if (ss[i].find(ss[j]) == 0) dp[i] = max(dp[j] + 1, dp[i]);
        ans = max(ans, dp[i]);
    }
    cout << ans << endl;
}

 

以上是关于P1481 魔族密码 (LIS)的主要内容,如果未能解决你的问题,请参考以下文章

DP 魔族密码 LIS

Vijos P1028 魔族密码(Trie解法)

[vijos p1028] 魔族密码

18.03.10 vijos1028魔族密码

apriori片段代码

7.16T3奇袭