結果

問題 No.3001 ヘビ文字列
ユーザー addeight2addeight2
提出日時 2024-12-31 07:28:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 378 ms / 1,500 ms
コード長 1,630 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 170,776 KB
実行使用メモリ 9,016 KB
最終ジャッジ日時 2025-01-01 07:48:07
合計ジャッジ時間 26,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,820 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 3 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 267 ms
7,656 KB
testcase_16 AC 267 ms
8,744 KB
testcase_17 AC 265 ms
7,184 KB
testcase_18 AC 262 ms
7,680 KB
testcase_19 AC 265 ms
7,784 KB
testcase_20 AC 265 ms
7,984 KB
testcase_21 AC 275 ms
8,988 KB
testcase_22 AC 272 ms
7,308 KB
testcase_23 AC 261 ms
8,476 KB
testcase_24 AC 265 ms
8,488 KB
testcase_25 AC 54 ms
7,316 KB
testcase_26 AC 51 ms
7,416 KB
testcase_27 AC 51 ms
7,692 KB
testcase_28 AC 49 ms
7,312 KB
testcase_29 AC 50 ms
8,052 KB
testcase_30 AC 51 ms
7,184 KB
testcase_31 AC 52 ms
7,620 KB
testcase_32 AC 49 ms
7,676 KB
testcase_33 AC 51 ms
7,672 KB
testcase_34 AC 55 ms
7,316 KB
testcase_35 AC 58 ms
8,112 KB
testcase_36 AC 59 ms
8,792 KB
testcase_37 AC 55 ms
7,528 KB
testcase_38 AC 56 ms
7,696 KB
testcase_39 AC 57 ms
7,648 KB
testcase_40 AC 53 ms
7,636 KB
testcase_41 AC 57 ms
7,596 KB
testcase_42 AC 55 ms
7,316 KB
testcase_43 AC 57 ms
7,312 KB
testcase_44 AC 54 ms
7,184 KB
testcase_45 AC 336 ms
6,816 KB
testcase_46 AC 310 ms
6,820 KB
testcase_47 AC 378 ms
6,816 KB
testcase_48 AC 369 ms
6,820 KB
testcase_49 AC 361 ms
6,816 KB
testcase_50 AC 365 ms
6,816 KB
testcase_51 AC 324 ms
6,816 KB
testcase_52 AC 315 ms
6,816 KB
testcase_53 AC 309 ms
6,816 KB
testcase_54 AC 307 ms
6,816 KB
testcase_55 AC 325 ms
8,288 KB
testcase_56 AC 336 ms
7,312 KB
testcase_57 AC 368 ms
7,936 KB
testcase_58 AC 354 ms
8,180 KB
testcase_59 AC 370 ms
8,784 KB
testcase_60 AC 334 ms
9,016 KB
testcase_61 AC 339 ms
7,880 KB
testcase_62 AC 366 ms
7,312 KB
testcase_63 AC 322 ms
7,552 KB
testcase_64 AC 376 ms
8,048 KB
testcase_65 AC 142 ms
6,820 KB
testcase_66 AC 196 ms
6,816 KB
testcase_67 AC 147 ms
7,312 KB
testcase_68 AC 60 ms
6,816 KB
testcase_69 AC 62 ms
6,820 KB
testcase_70 AC 103 ms
6,816 KB
testcase_71 AC 85 ms
6,816 KB
testcase_72 AC 96 ms
6,816 KB
testcase_73 AC 89 ms
6,820 KB
testcase_74 AC 82 ms
6,820 KB
testcase_75 AC 318 ms
7,444 KB
testcase_76 AC 329 ms
8,624 KB
testcase_77 AC 333 ms
8,764 KB
testcase_78 AC 362 ms
7,828 KB
testcase_79 AC 316 ms
8,080 KB
testcase_80 AC 305 ms
8,480 KB
testcase_81 AC 360 ms
7,428 KB
testcase_82 AC 312 ms
7,312 KB
testcase_83 AC 325 ms
7,188 KB
testcase_84 AC 354 ms
8,384 KB
testcase_85 AC 2 ms
6,816 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