結果

問題 No.1909 Detect from Substrings
ユーザー wudi mawudi ma
提出日時 2022-04-24 01:51:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,050 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 189,596 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2023-09-07 17:12:44
合計ジャッジ時間 6,483 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,960 KB
testcase_01 AC 5 ms
11,584 KB
testcase_02 AC 5 ms
11,512 KB
testcase_03 AC 6 ms
11,616 KB
testcase_04 AC 9 ms
11,800 KB
testcase_05 AC 32 ms
12,652 KB
testcase_06 AC 60 ms
13,552 KB
testcase_07 AC 28 ms
13,696 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:91:23: 警告: ‘pos1’ may be used uninitialized [-Wmaybe-uninitialized]
   91 |     for(int i = 0 ; i < pos1 ; i ++ ){
      |                     ~~^~~~~~
main.cpp:77:9: 備考: ‘pos1’ はここで定義されています
   77 |     int pos1,pos2;
      |         ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N = 1e6 + 10;
map<int,int>st;
unsigned long long has[N],base[N];

unsigned long long get(int l,int r){
    if(r < l)return 0;
    return has[r] - has[l-1] * base[r-l+1];
}

map<unsigned long long,int>mp;
int main(){
    base[0] = 1;
    for(int i = 1 ; i < N ; i ++ )base[i] = base[i-1] * 131;
    int n,m;cin >> n >> m;
    vector<string>s(n);
    for(int i = 0 ; i < n ; i ++ ){
        cin >> s[i];
    }
    sort(s.begin(),s.end());
    s.resize(unique(s.begin(),s.end())-s.begin());
    if(s.size() == 1){
        return cout << (m+1) * 26,0;
    }   
    string ta = s[0] + s[1][s[1].size()-1];
    for(int i = 1 ; i <= m+1 ; i ++ ){
        has[i] = has[i-1] * 131 + ta[i-1];
    }
    for(int i = 1 ; i <= m+1 ; i ++ ){
        mp[get(1,i-1) * 131 + get(i+1,m+1)];
    }
    bool ok = 0;
    // cout << get(2,m+1) << '\n';
    mp[get(1,m)] = mp[get(2,m+1)] = 1;
    for(int i = 0 ; i < n ; i ++ ){
        ok = 0;
        for(int j = 1 ; j <= m ; j ++ ){
            has[j] = has[j-1] * 131 + s[i][j-1];
        }
        // cout << get(1,2) << '\n';
        for(int j = 1 ; j <= m ; j ++ ){
            // cout << get(j,m) << '\n';
            if(mp.count(get(1,j-1) * 131 + get(j,m))){
                ok = 1;
                break;
            }
        }
        if(ok == 0)break;
    }
    if(ok){
        string tb = s[1][0] + s[0];
        mp.clear();
        for(int i = 1 ; i <= m+1 ; i ++ ){
            has[i] = has[i-1] * 131 + tb[i-1];
        }
        for(int i = 1 ; i <= m+1 ; i ++ ){
            mp[get(1,i-1) * 131 + get(i+1,m+1)];
        }
        mp[get(1,m)] = mp[get(2,m+1)] = 1;
        for(int i = 0 ; i < n ; i ++ ){
            ok = 0;
            for(int j = 1 ; j <= m ; j ++ ){
                has[j] = has[j-1] * 131 + s[i][j-1];
            }
            for(int j = 1 ; j <= m ; j ++ ){
                if(mp.count(get(1,j-1) * 131 + get(j,m))){
                    ok = 1;
                    break;
                }
            }
            if(ok == 0)break;
        }
        if(ok)return cout << 2,0;
    }

    int pos1,pos2;
    for(int i = 0 ; i < m ; i ++ ){
        pos1 = i;
        if(s[0][i] != s[1][i])break;
    }
    for(int i = m-1 ; i > 0 ; i -- ){
        pos2 = i;
        if(s[0][i] != s[1][i])break;
    }
    ok = 0;
    for(int i = pos1 ; i < pos2 ; i ++ ){
        if(s[0][i] != s[1][i+1])ok = 1;
    }
    string x;
    for(int i = 0 ; i < pos1 ; i ++ ){
        x += s[0][i];
    }
    string y = x;
    // if(!ok){
        x += s[1][pos1];
        for(int i = pos1 ; i < s[0].size() ; i ++ )x += s[0][i];
    // }
    // else{
        y += s[0][pos1];
        for(int i = pos1 ; i < s[1].size() ; i ++ )y += s[1][i];
    // }
    mp.clear();
    for(int i = 1 ; i <= m+1 ; i ++ ){
        has[i] = has[i-1] * 131 + x[i-1];
    }
    for(int i = 1 ; i <= m+1 ; i ++ ){
        mp[get(1,i-1) * 131 + get(i+1,m+1)];
    }
    ok = 0;
    mp[get(1,m)] = mp[get(2,m+1)] = 1;
    for(int i = 0 ; i < n ; i ++ ){
        ok = 0;
        for(int j = 1 ; j <= m ; j ++ ){
            has[j] = has[j-1] * 131 + s[i][j-1];
        }
        for(int j = 1 ; j <= m ; j ++ ){
            if(mp.count(get(1,j-1) * 131 + get(j,m))){
                ok = 1;
                break;
            }
        }
        if(ok == 0)break;
    }
    int res = ok;
    ok = 0;
    x = y;
    // cout << x << '\n';
    mp.clear();
    for(int i = 1 ; i <= m+1 ; i ++ ){
        has[i] = has[i-1] * 131 + x[i-1];
    }
    for(int i = 1 ; i <= m+1 ; i ++ ){
        mp[get(1,i-1) * 131 + get(i+1,m+1)];
    }
    ok = 0;
    mp[get(1,m)] = mp[get(2,m+1)] = 1;
    for(int i = 0 ; i < n ; i ++ ){
        ok = 0;
        for(int j = 1 ; j <= m ; j ++ ){
            has[j] = has[j-1] * 131 + s[i][j-1];
        }
        for(int j = 1 ; j <= m ; j ++ ){
            if(mp.count(get(1,j-1) * 131 + get(j,m))){
                ok = 1;
                break;
            }
        }
        if(ok == 0)break;
    }
    res += ok;
    cout << res << '\n';
}
0