結果

問題 No.3001 ヘビ文字列
ユーザー addeight2addeight2
提出日時 2024-12-22 15:01:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 363 ms / 1,500 ms
コード長 2,275 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 180,176 KB
実行使用メモリ 11,244 KB
最終ジャッジ日時 2025-01-01 07:33:44
合計ジャッジ時間 24,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 205 ms
11,112 KB
testcase_16 AC 203 ms
11,112 KB
testcase_17 AC 200 ms
11,240 KB
testcase_18 AC 201 ms
11,116 KB
testcase_19 AC 201 ms
11,116 KB
testcase_20 AC 203 ms
11,108 KB
testcase_21 AC 201 ms
11,116 KB
testcase_22 AC 200 ms
11,244 KB
testcase_23 AC 202 ms
11,112 KB
testcase_24 AC 201 ms
11,112 KB
testcase_25 AC 18 ms
11,112 KB
testcase_26 AC 18 ms
11,108 KB
testcase_27 AC 17 ms
11,240 KB
testcase_28 AC 18 ms
11,112 KB
testcase_29 AC 18 ms
11,112 KB
testcase_30 AC 18 ms
11,112 KB
testcase_31 AC 17 ms
11,112 KB
testcase_32 AC 18 ms
11,112 KB
testcase_33 AC 19 ms
11,112 KB
testcase_34 AC 18 ms
11,100 KB
testcase_35 AC 21 ms
11,108 KB
testcase_36 AC 21 ms
10,980 KB
testcase_37 AC 21 ms
10,984 KB
testcase_38 AC 20 ms
10,980 KB
testcase_39 AC 21 ms
10,984 KB
testcase_40 AC 21 ms
11,112 KB
testcase_41 AC 21 ms
10,984 KB
testcase_42 AC 21 ms
11,112 KB
testcase_43 AC 22 ms
10,984 KB
testcase_44 AC 22 ms
11,112 KB
testcase_45 AC 300 ms
10,856 KB
testcase_46 AC 288 ms
10,852 KB
testcase_47 AC 309 ms
10,980 KB
testcase_48 AC 313 ms
10,856 KB
testcase_49 AC 314 ms
10,856 KB
testcase_50 AC 310 ms
10,856 KB
testcase_51 AC 291 ms
10,852 KB
testcase_52 AC 288 ms
10,984 KB
testcase_53 AC 287 ms
10,856 KB
testcase_54 AC 314 ms
10,860 KB
testcase_55 AC 337 ms
10,988 KB
testcase_56 AC 305 ms
10,984 KB
testcase_57 AC 321 ms
11,112 KB
testcase_58 AC 315 ms
10,980 KB
testcase_59 AC 323 ms
10,984 KB
testcase_60 AC 340 ms
10,988 KB
testcase_61 AC 363 ms
11,112 KB
testcase_62 AC 339 ms
10,984 KB
testcase_63 AC 359 ms
10,984 KB
testcase_64 AC 336 ms
10,984 KB
testcase_65 AC 76 ms
8,552 KB
testcase_66 AC 190 ms
10,860 KB
testcase_67 AC 131 ms
10,988 KB
testcase_68 AC 32 ms
9,188 KB
testcase_69 AC 39 ms
8,556 KB
testcase_70 AC 124 ms
10,856 KB
testcase_71 AC 56 ms
7,912 KB
testcase_72 AC 65 ms
8,680 KB
testcase_73 AC 63 ms
7,524 KB
testcase_74 AC 48 ms
9,964 KB
testcase_75 AC 318 ms
10,984 KB
testcase_76 AC 292 ms
11,112 KB
testcase_77 AC 293 ms
10,988 KB
testcase_78 AC 302 ms
10,984 KB
testcase_79 AC 322 ms
10,984 KB
testcase_80 AC 317 ms
10,988 KB
testcase_81 AC 298 ms
10,988 KB
testcase_82 AC 320 ms
10,988 KB
testcase_83 AC 292 ms
10,984 KB
testcase_84 AC 297 ms
10,984 KB
testcase_85 AC 2 ms
6,820 KB
testcase_86 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define FOR(i, a, b) for(int i = (a); i < (b); ++i)
#define REP(i, a) FOR(i, 0, a)

using namespace std;

vector<int> get_p_factors(int n) {
    vector<int> p_factors;
    for (int i = 2; i * i <= n; ++i) {
        if (n % i == 0) {
            p_factors.push_back(i);
            while (n % i == 0) {
                n /= i;
            }
        }
    }
    if (n != 1) {
        p_factors.push_back(n);
    }
    return p_factors;
}

pair<int, string> solve_w_period(string S, int period) {
    int n = S.length(), ans = 0;
    vector<int> char_cnt_vec;
    bool flg = (n / period * 2 < 13);
    if (!flg) {
        char_cnt_vec.resize('Z' - 'A' + 1);
    }
    REP(i, period) {
        map<char, int> char_cnt;
        pair<char, int> max_cnt;
        if (flg) {
            REP(j, n / period) {
                ++char_cnt[S[i + period * j]];
            }
            max_cnt = *max_element(char_cnt.begin(), char_cnt.end(),
                                     [](auto a, auto b) { return a.second < b.second; });
        }else{
            REP(j, n / period) {
                ++char_cnt_vec[S[i + period * j] - 'A'];
            }
            int max_ele = max_element(char_cnt_vec.begin(), char_cnt_vec.end())
                            - char_cnt_vec.begin();
            max_cnt.first = 'A' + max_ele;
            max_cnt.second = char_cnt_vec[max_ele];
            if (n / period < 26){
                REP(j, n / period) char_cnt_vec[S[i + period * j] - 'A'] = 0;
            }else{
                fill(char_cnt_vec.begin(), char_cnt_vec.end(), 0);
            }
        }
        ans += n / period - max_cnt.second;
        REP(j, n / period) {
            S[i + period * j] = max_cnt.first;
        }
    }
    return make_pair(ans, S);
}

string solve(const string &S) {
    int n = S.length();
    vector<int> p_factors = get_p_factors(n);

    auto ans = make_pair(n, S);
    for (int p_factor : p_factors) {
        int period = n / p_factor;
        auto temp_ans = solve_w_period(S, period);
        if (temp_ans.first < ans.first) {
            ans = temp_ans;
        }
    }
    return ans.second;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    string S;
    cin >> S;
    cout << solve(S) << endl;
}
0