bzoj3059 归途与征程(字符串,优化dp)

各种奇怪的优化,然后各种恶心的细节,然后直接的暴力。

#include 
#include 
#include 
#include 
#include 
using namespace std;
#define ll long long
#define N 100010
#define inf 0x3f3f3f3f
inline int read(){
    int x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
    return x*f;
}
int n,m,ans=0,num=0,tot=0,len[110],f[N<<1][110];//f[i][j]-i及i以后,最早的出现j串的位置 
char a[N<<1],b[110],t[110];
queue<int>pos[110];
void solve(){
    int last=inf;
    for(int i=n+n-1-num+1;i>=1;--i){
        bool flag=1;
        for(int j=1;j<=num;++j)
            if(t[j]!=a[i+j-1]){flag=0;break;}
        if(flag) last=i;f[i][tot]=last;
    }
}
bool jud(int st){
    int p=st,ed=st-1+n;
    if(b[1]!='*'){
        if(f[st][1]!=st) return 0;else p=st+len[1];
    }else p=f[st][1]+len[1];if(p>=inf) return 0;
    for(int i=2;iif(p-1>ed) return 0;
    }
    if(b[m]!='*'){
        if(f[ed-len[tot]+1][tot]!=ed-len[tot]+1) return 0;
        if(p<=ed-len[tot]+1) return 1;return 0;
    }if(f[p][tot]+len[tot]-1<=ed) return 1;return 0;
}
int main(){
//  freopen("journey1.in","r",stdin);
    scanf("%s%s",b+1,a+1);n=strlen(a+1);m=strlen(b+1);
    for(int i=1;ifor(int i=1,last=1;i<=m;i=last){
        while(i<=m&&b[i]=='*') i++;last=i;num=0;
        while(last<=m&&b[last]!='*') t[++num]=b[last],++last;
        if(i==last) break;len[++tot]=num;solve();
    }
    for(int i=1;i<=n;++i) if(jud(i)) ans++;
    printf("%d\n",ans);
    return 0;
}

你可能感兴趣的:(bzoj,暴力)