結果

問題 No.3001 ヘビ文字列
ユーザー addeight2
提出日時 2024-12-30 17:17:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 359 ms / 1,500 ms
コード長 1,600 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 171,672 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-01 07:47:40
合計ジャッジ時間 24,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 83
権限があれば一括ダウンロードができます

ソースコード

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> get_p_factors(ll n) {
    vector<ll> p_factors;
    for (ll 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;
}

ll solve_w_period(string &S, ll period, bool replace_S = false) {
    ll n = S.length(), ans = 0;
    REP(i, period) {
        vector<ll> char_cnt_vec('Z' - 'A' + 1, 0);
        pair<char, ll> max_cnt;
        REP(j, n / period) {
            ++char_cnt_vec[S[i + period * j] - 'A'];
        }
        auto max_ele = max_element(char_cnt_vec.begin(), char_cnt_vec.end());
        ans += n / period - *max_ele;
        if (replace_S) {
            REP(j, n / period) {
                S[i + period * j] = 'A' + (max_ele - char_cnt_vec.begin());
            }
        }
    }
    return ans;
}

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

    ll ans = n, best_period = 1;
    for (ll p_factor : p_factors) {
        ll period = n / p_factor;
        ll temp_ans = solve_w_period(S, period);
        if (temp_ans < ans) {
            ans = temp_ans;
            best_period = period;
        }
    }
    solve_w_period(S, best_period, true);
}

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