请问我是为什么错了?

P1439 【模板】最长公共子序列

FALCONAD @ 2021-07-07 19:16:24

#include<bits/stdc++.h>
using namespace std;
int n,a[100001],b[100001],c[100001],dp[100001];
int main()
{
    ios::sync_with_stdio(false);
    cin>>n;
    for(int i=1;i<=n;i++) cin>>a[i];
    for(int i=1;i<=n;i++) cin>>b[i];
    sort(b+1,b+n+1);
    for(int i=1;i<=n;i++)
    if(binary_search(b+1,b+n+1,a[i]))
        c[i]=lower_bound(b+1,b+n+1,a[i])-b;
    else c[i]=0;
    for(int i=1;i<=n;i++)
    {
        dp[i]=1;
        for(int j=1;j<i;j++)
        {
            if(c[i]>c[j])
                dp[i]=max(dp[i],dp[j]+1);
        }
    }
    int maxx=0;
    for(int i=1;i<=n;i++)
        if(dp[i]>maxx) maxx=dp[i];
    cout<<maxx;
    return 0;
}

by STJqwq @ 2021-07-07 19:47:05

@FALCONAD 您的后续算法,dp部分是 O(n^2) 的。

本题中 n\le 10^5 ,不能过。

应该使用二分法来做。


by FALCONAD @ 2021-07-07 19:52:31

好的,谢谢


|