HDU4080 Stammering Aliens

題目連結

  • 題意:給定整數 $m$ 和一字串 $S$,求至少出現 $m$ 次的最長子字串,如果有多組,輸出且最右邊那組。
  • 題解:先求出 hash 函數,利用二分搜枚舉長度。判斷是否長度為 $x$ 的字串出現 $m$ 次的方法如下,從左至右將每段長度為 $x$ 的字串 hash 值放入 map 計數,如果 $\geq m$ 次,就更新右界。
  • 心得,這題很容易 TLE,我把 HDU AC 的題目上傳到 UVaLive 和 POJ 都 TLE 了。
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    #pragma GCC optimize(2)
    #include <algorithm>
    #include <cmath>
    #include <cstring>
    #include <iostream>
    #include <map>
    #include <string>
    #include <vector>
    using namespace std;
    typedef unsigned long long ULL;
    const int INF = 1e9;
    const int MXN = 40005;
    const int MXV = 0;
    const ULL MOD = 10009;
    const ULL seed = 1313131;
    #define MP make_pair
    #define PB push_back
    #define F first
    #define S second
    #define FOR(i, L, R) for (int i = L; i != (int)R; ++i)
    #define FORD(i, L, R) for (int i = L; i != (int)R; --i)
    #define IOS \
    cin.tie(NULL); \
    cout.tie(NULL); \
    ios_base::sync_with_stdio(false);
    int m, sz;
    ULL val[MXN], _pow[MXN];
    char s[MXN];

    map<ULL, int> mp;
    int check(int x)
    {
    // cout << "test " << x << '\n';
    int res = -1;
    mp.clear();
    FOR(i, x, sz + 1)
    {
    ULL tmp = val[i] - (val[i - x] * _pow[x]);
    ++mp[tmp];
    // cout << i << ' ' << mp[tmp] << '\n';
    if (mp[tmp] >= m)
    {
    res = i - x;
    }
    }
    return res;
    }

    int main()
    {
    _pow[0] = 1;
    FOR(i, 1, MXN) { _pow[i] = _pow[i - 1] * seed; }
    while (scanf("%d", &m), m)
    {
    scanf("%s", s + 1);
    sz = strlen(s + 1);
    val[0] = 0;
    FOR(i, 1, sz + 1) { val[i] = val[i - 1] * seed + (s[i] - 'a'); }
    int L = 1, R = sz;
    int ansLen = -1, ansPos = 0;
    if (check(1) == -1)
    {
    printf("none\n");
    continue;
    }
    while (L <= R)
    {
    int M = (L + R) >> 1;
    int res = check(M);
    // cout << M << ' ' << res << '\n';
    if (res != -1)
    {
    ansLen = M;
    ansPos = res;
    L = M + 1;
    }
    else
    {
    R = M - 1;
    }
    }
    printf("%d %d\n", ansLen, ansPos);
    }
    }

如果你覺得這篇文章很棒,請你不吝點讚 (゚∀゚)

Recommended Posts