結果

問題 No.3001 ヘビ文字列
ユーザー 259-Momone259-Momone
提出日時 2025-01-02 01:56:05
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 339 ms / 1,500 ms
コード長 1,266 bytes
コンパイル時間 5,821 ms
コンパイル使用メモリ 348,620 KB
実行使用メモリ 110,700 KB
最終ジャッジ日時 2025-01-02 01:56:36
合計ジャッジ時間 27,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 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,824 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 203 ms
109,744 KB
testcase_16 AC 188 ms
110,544 KB
testcase_17 AC 186 ms
110,196 KB
testcase_18 AC 186 ms
109,984 KB
testcase_19 AC 200 ms
110,148 KB
testcase_20 AC 176 ms
110,628 KB
testcase_21 AC 174 ms
110,700 KB
testcase_22 AC 192 ms
110,024 KB
testcase_23 AC 194 ms
109,868 KB
testcase_24 AC 191 ms
109,936 KB
testcase_25 AC 109 ms
7,896 KB
testcase_26 AC 122 ms
7,184 KB
testcase_27 AC 108 ms
8,140 KB
testcase_28 AC 108 ms
8,200 KB
testcase_29 AC 112 ms
7,308 KB
testcase_30 AC 111 ms
7,188 KB
testcase_31 AC 112 ms
7,592 KB
testcase_32 AC 108 ms
7,540 KB
testcase_33 AC 112 ms
8,196 KB
testcase_34 AC 110 ms
7,536 KB
testcase_35 AC 50 ms
7,796 KB
testcase_36 AC 51 ms
7,396 KB
testcase_37 AC 54 ms
8,724 KB
testcase_38 AC 49 ms
7,312 KB
testcase_39 AC 50 ms
8,876 KB
testcase_40 AC 49 ms
7,472 KB
testcase_41 AC 50 ms
8,020 KB
testcase_42 AC 52 ms
8,524 KB
testcase_43 AC 51 ms
7,312 KB
testcase_44 AC 49 ms
8,696 KB
testcase_45 AC 271 ms
107,736 KB
testcase_46 AC 303 ms
107,668 KB
testcase_47 AC 276 ms
107,792 KB
testcase_48 AC 273 ms
107,680 KB
testcase_49 AC 319 ms
107,788 KB
testcase_50 AC 275 ms
107,728 KB
testcase_51 AC 292 ms
107,836 KB
testcase_52 AC 271 ms
107,740 KB
testcase_53 AC 303 ms
107,664 KB
testcase_54 AC 280 ms
107,680 KB
testcase_55 AC 307 ms
109,724 KB
testcase_56 AC 303 ms
109,532 KB
testcase_57 AC 339 ms
109,344 KB
testcase_58 AC 313 ms
110,280 KB
testcase_59 AC 311 ms
109,356 KB
testcase_60 AC 303 ms
109,228 KB
testcase_61 AC 307 ms
109,392 KB
testcase_62 AC 335 ms
109,300 KB
testcase_63 AC 317 ms
109,772 KB
testcase_64 AC 320 ms
109,968 KB
testcase_65 AC 96 ms
50,480 KB
testcase_66 AC 198 ms
106,380 KB
testcase_67 AC 144 ms
74,080 KB
testcase_68 AC 64 ms
8,948 KB
testcase_69 AC 60 ms
24,764 KB
testcase_70 AC 98 ms
45,444 KB
testcase_71 AC 58 ms
29,024 KB
testcase_72 AC 67 ms
32,808 KB
testcase_73 AC 82 ms
62,004 KB
testcase_74 AC 78 ms
30,444 KB
testcase_75 AC 287 ms
109,608 KB
testcase_76 AC 292 ms
109,784 KB
testcase_77 AC 286 ms
110,068 KB
testcase_78 AC 286 ms
109,464 KB
testcase_79 AC 280 ms
109,784 KB
testcase_80 AC 278 ms
110,188 KB
testcase_81 AC 280 ms
109,388 KB
testcase_82 AC 295 ms
109,716 KB
testcase_83 AC 315 ms
109,356 KB
testcase_84 AC 283 ms
109,584 KB
testcase_85 AC 1 ms
6,820 KB
testcase_86 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    string S;
    cin >> S;
    const unsigned N(size(S));
    string ans{};
    auto prefix_min{numeric_limits<unsigned>::max()};
    unsigned repeat{};
    for (const auto p : [](unsigned N) {
        vector<unsigned> result;
        for (unsigned p{2}; p * p <= N; ++p)
            if (N % p == 0) {
                result.emplace_back(p);
                while (N % p == 0)
                    N /= p;
            }
        if (N > 1)
            result.emplace_back(N);
        return result;
    }(N) | views::transform([N](const auto p){ return N / p; })) {
        vector<array<unsigned, 26>> counter(p);
        for (unsigned i{}; const auto c : S)
            ++counter[i++ % p][c - 65];
        auto modify_count{N};
        string tmp{};
        for (const auto &x : counter) {
            const auto &it{ranges::max_element(x)};
            tmp += static_cast<char>(ranges::distance(begin(x), it) + 65);
            modify_count -= *it;
        }
        if (modify_count < prefix_min) {
            prefix_min = modify_count;
            ans = tmp;
            repeat = N / p;
        }
    }
    for (unsigned i{}; i < repeat; ++i)
        cout << ans;
    cout << endl;
    return 0;
}
0