码迷,mamicode.com
首页 > 其他好文 > 详细

[POI2000]病毒

时间:2018-01-23 00:59:47      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:ace   reg   new   while   span   har   define   str   ref   

题面

传送门

Sol

建出AC自动机后DFS能走的点,如果能走回来就可行

# include <bits/stdc++.h>
# define IL inline
# define RG register
# define Fill(a, b) memset(a, b, sizeof(a))
using namespace std;
typedef long long ll;
const int _(3e5 + 5);

int ch[2][_], tot, fail[_], n, vis[_], in[_];
bool cnt[_];
char w[_];
queue <int> Q;

IL void Insert(){
    RG int l = strlen(w), x = 0;
    for(RG int i = 0; i < l; ++i){
        RG int c = w[i] - '0';
        if(!ch[c][x]) ch[c][x] = ++tot;
        x = ch[c][x];
    }
    cnt[x] = 1;
}

IL void GetFail(){
    for(RG int i = 0; i < 2; ++i) if(ch[i][0]) Q.push(ch[i][0]);
    while(!Q.empty()){
        RG int fa = Q.front(); Q.pop();
        for(RG int i = 0; i < 2; ++i)
            if(ch[i][fa]) fail[ch[i][fa]] = ch[i][fail[fa]], Q.push(ch[i][fa]);
            else ch[i][fa] = ch[i][fail[fa]];
        cnt[fa] |= cnt[fail[fa]];
    }
}

IL void Dfs(RG int x){
    in[x] = vis[x] = 1;
    for(RG int i = 0; i < 2; ++i){
        if(in[ch[i][x]]){  puts("TAK"); exit(0);  }
        if(vis[ch[i][x]] || cnt[ch[i][x]]) continue;
        Dfs(ch[i][x]);
    }
    in[x] = 0;
}

int main(RG int argc, RG char* argv[]){
    scanf("%d", &n);
    for(RG int i = 1; i <= n; ++i) scanf(" %s", w), Insert();
    GetFail();
    Dfs(0);
    puts("NIE");
    return 0;
}

[POI2000]病毒

标签:ace   reg   new   while   span   har   define   str   ref   

原文地址:https://www.cnblogs.com/cjoieryl/p/8331492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!