結果

問題 No.3001 ヘビ文字列
ユーザー addeight2addeight2
提出日時 2025-01-01 11:38:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 381 ms / 1,500 ms
コード長 1,629 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 172,376 KB
実行使用メモリ 9,104 KB
最終ジャッジ日時 2025-01-01 11:38:56
合計ジャッジ時間 27,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 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 3 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 275 ms
8,084 KB
testcase_16 AC 301 ms
7,460 KB
testcase_17 AC 278 ms
7,312 KB
testcase_18 AC 272 ms
8,828 KB
testcase_19 AC 270 ms
8,244 KB
testcase_20 AC 275 ms
7,800 KB
testcase_21 AC 283 ms
8,172 KB
testcase_22 AC 274 ms
7,716 KB
testcase_23 AC 274 ms
8,488 KB
testcase_24 AC 280 ms
8,520 KB
testcase_25 AC 52 ms
7,312 KB
testcase_26 AC 49 ms
7,184 KB
testcase_27 AC 50 ms
7,444 KB
testcase_28 AC 51 ms
8,200 KB
testcase_29 AC 51 ms
7,680 KB
testcase_30 AC 52 ms
8,820 KB
testcase_31 AC 51 ms
8,020 KB
testcase_32 AC 50 ms
7,552 KB
testcase_33 AC 51 ms
7,452 KB
testcase_34 AC 52 ms
8,604 KB
testcase_35 AC 57 ms
8,156 KB
testcase_36 AC 55 ms
7,188 KB
testcase_37 AC 57 ms
8,248 KB
testcase_38 AC 56 ms
8,004 KB
testcase_39 AC 55 ms
7,524 KB
testcase_40 AC 56 ms
7,972 KB
testcase_41 AC 58 ms
8,604 KB
testcase_42 AC 57 ms
8,020 KB
testcase_43 AC 57 ms
8,508 KB
testcase_44 AC 56 ms
8,168 KB
testcase_45 AC 350 ms
6,816 KB
testcase_46 AC 328 ms
6,820 KB
testcase_47 AC 377 ms
6,820 KB
testcase_48 AC 372 ms
6,816 KB
testcase_49 AC 378 ms
6,820 KB
testcase_50 AC 371 ms
6,820 KB
testcase_51 AC 324 ms
6,820 KB
testcase_52 AC 332 ms
6,816 KB
testcase_53 AC 323 ms
6,820 KB
testcase_54 AC 311 ms
6,816 KB
testcase_55 AC 329 ms
7,308 KB
testcase_56 AC 355 ms
7,316 KB
testcase_57 AC 376 ms
7,568 KB
testcase_58 AC 348 ms
7,188 KB
testcase_59 AC 379 ms
9,104 KB
testcase_60 AC 342 ms
8,400 KB
testcase_61 AC 343 ms
7,628 KB
testcase_62 AC 381 ms
7,188 KB
testcase_63 AC 315 ms
7,808 KB
testcase_64 AC 374 ms
7,796 KB
testcase_65 AC 139 ms
6,816 KB
testcase_66 AC 193 ms
6,816 KB
testcase_67 AC 140 ms
7,632 KB
testcase_68 AC 62 ms
6,816 KB
testcase_69 AC 66 ms
6,816 KB
testcase_70 AC 103 ms
6,820 KB
testcase_71 AC 86 ms
6,820 KB
testcase_72 AC 97 ms
6,816 KB
testcase_73 AC 91 ms
6,820 KB
testcase_74 AC 81 ms
6,820 KB
testcase_75 AC 321 ms
7,308 KB
testcase_76 AC 338 ms
8,240 KB
testcase_77 AC 329 ms
7,904 KB
testcase_78 AC 349 ms
7,708 KB
testcase_79 AC 321 ms
7,184 KB
testcase_80 AC 304 ms
7,388 KB
testcase_81 AC 348 ms
7,660 KB
testcase_82 AC 328 ms
7,928 KB
testcase_83 AC 335 ms
7,600 KB
testcase_84 AC 353 ms
8,132 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(ll i = (a); i < (b); ++i)
#define REP(i, a) FOR(i, 0, a)

using namespace std;
using ll = long long;

vector<ll> soinsuu_bunkai(ll n) {
    vector<ll> soinsuu;
    for (ll i = 2; i * i <= n; ++i) {
        if (n % i == 0) {
            soinsuu.push_back(i);
            while (n % i == 0) {
                n /= i;
            }
        }
    }
    if (n != 1) {
        // root(n) までで割り切れなければ素数
        soinsuu.push_back(n);
    }
    return soinsuu;
}

ll solve_period(string &S, ll period, bool replace_S = false) {
    // 周期が period の文字列にするためにかかるコストを返す
    ll n = S.length(), ans = 0;
    REP(i, period) {
        vector<ll> char_cnt('Z' - 'A' + 1, 0);
        REP(j, n / period) {
            ++char_cnt[S[i + period * j] - 'A'];
        }
        auto max_ele = max_element(char_cnt.begin(), char_cnt.end());
        ans += n / period - *max_ele;
        if (replace_S) {
            REP(j, n / period) {
                S[i + period * j] = 'A' + (max_ele - char_cnt.begin());
            }
        }
    }
    return ans;
}

void solve(string &S) {
    ll n = S.length();
    vector<ll> soinsuu_vec = soinsuu_bunkai(n);

    ll ans = n, best_period = 1;
    for (ll soinsuu : soinsuu_vec) {
        ll period = n / soinsuu;
        ll temp_ans = solve_period(S, period);
        if (temp_ans < ans) {
            ans = temp_ans;
            best_period = period;
        }
    }
    solve_period(S, best_period, true);
}

int main() {
    string S;
    cin >> S;
    solve(S);
    cout << S << endl;
}
0