結果

問題 No.3001 ヘビ文字列
ユーザー t98slidert98slider
提出日時 2025-01-01 08:24:46
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,111 ms / 1,500 ms
コード長 1,715 bytes
コンパイル時間 3,203 ms
コンパイル使用メモリ 206,792 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-01 08:25:31
合計ジャッジ時間 42,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 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,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 298 ms
6,816 KB
testcase_16 AC 327 ms
6,820 KB
testcase_17 AC 297 ms
6,820 KB
testcase_18 AC 302 ms
6,824 KB
testcase_19 AC 303 ms
6,816 KB
testcase_20 AC 323 ms
6,820 KB
testcase_21 AC 301 ms
6,820 KB
testcase_22 AC 307 ms
6,816 KB
testcase_23 AC 315 ms
6,820 KB
testcase_24 AC 300 ms
6,820 KB
testcase_25 AC 13 ms
6,816 KB
testcase_26 AC 12 ms
6,816 KB
testcase_27 AC 12 ms
6,816 KB
testcase_28 AC 13 ms
6,820 KB
testcase_29 AC 13 ms
6,816 KB
testcase_30 AC 13 ms
6,816 KB
testcase_31 AC 13 ms
6,816 KB
testcase_32 AC 13 ms
6,820 KB
testcase_33 AC 13 ms
6,816 KB
testcase_34 AC 13 ms
6,816 KB
testcase_35 AC 19 ms
6,820 KB
testcase_36 AC 19 ms
6,816 KB
testcase_37 AC 20 ms
6,820 KB
testcase_38 AC 19 ms
6,820 KB
testcase_39 AC 19 ms
6,816 KB
testcase_40 AC 20 ms
6,816 KB
testcase_41 AC 19 ms
6,816 KB
testcase_42 AC 19 ms
6,816 KB
testcase_43 AC 19 ms
6,820 KB
testcase_44 AC 19 ms
6,816 KB
testcase_45 AC 1,084 ms
6,816 KB
testcase_46 AC 1,016 ms
6,816 KB
testcase_47 AC 1,082 ms
6,820 KB
testcase_48 AC 1,084 ms
6,816 KB
testcase_49 AC 1,108 ms
6,816 KB
testcase_50 AC 1,111 ms
6,816 KB
testcase_51 AC 1,039 ms
6,820 KB
testcase_52 AC 1,023 ms
6,820 KB
testcase_53 AC 1,023 ms
6,820 KB
testcase_54 AC 1,005 ms
6,816 KB
testcase_55 AC 489 ms
6,816 KB
testcase_56 AC 523 ms
6,816 KB
testcase_57 AC 542 ms
6,816 KB
testcase_58 AC 516 ms
6,816 KB
testcase_59 AC 545 ms
6,816 KB
testcase_60 AC 500 ms
6,820 KB
testcase_61 AC 505 ms
6,820 KB
testcase_62 AC 547 ms
6,820 KB
testcase_63 AC 444 ms
6,820 KB
testcase_64 AC 536 ms
6,816 KB
testcase_65 AC 60 ms
6,816 KB
testcase_66 AC 78 ms
6,816 KB
testcase_67 AC 63 ms
6,820 KB
testcase_68 AC 30 ms
6,820 KB
testcase_69 AC 23 ms
6,816 KB
testcase_70 AC 40 ms
6,820 KB
testcase_71 AC 44 ms
6,816 KB
testcase_72 AC 42 ms
6,816 KB
testcase_73 AC 43 ms
6,816 KB
testcase_74 AC 32 ms
6,816 KB
testcase_75 AC 1,010 ms
6,820 KB
testcase_76 AC 997 ms
6,816 KB
testcase_77 AC 1,016 ms
6,816 KB
testcase_78 AC 1,065 ms
6,816 KB
testcase_79 AC 1,021 ms
6,816 KB
testcase_80 AC 975 ms
6,816 KB
testcase_81 AC 1,066 ms
6,820 KB
testcase_82 AC 1,002 ms
6,820 KB
testcase_83 AC 1,035 ms
6,820 KB
testcase_84 AC 1,077 ms
6,816 KB
testcase_85 AC 2 ms
6,816 KB
testcase_86 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

bool check(int a, int b, int c){
    if (a == b || b == c || a == c) return false;
    if (a < b && b > c) return true;
    if (a > b && b < c) return true;
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin >> s;
    const int n = s.size();
    vector<int> divs;
    for(int i = 1; i * i <= n; i++){
        if(n % i == 0){
            divs.emplace_back(i);
            if(i * i != n) divs.emplace_back(n / i);
        }
    }
    sort(divs.begin(), divs.end());
    divs.pop_back();
    int mn = 1 << 30, cd = -1;
    for(auto d : divs){
        const int step = n / d;
        int tot = 0;
        for(int j = 0; j < d; j++){
            array<int, 26> cnt{};
            for(int k = j; k < n; k += d){
                cnt[s[k] - 'A']++;
            }
            tot += step - *max_element(cnt.begin(), cnt.end());
            if(tot >= mn) break;
        }
        if(tot < mn){
            mn = tot;
            cd = d;
        }
    }
    for(int j = 0; j < cd; j++){
        array<int, 26> cnt{};
        for(int k = j; k < n; k += cd){
            cnt[s[k] - 'A']++;
        }
        int p = max_element(cnt.begin(), cnt.end()) - cnt.begin();
        for(int k = j; k < n; k += cd){
            s[k] = p + 'A';
        }
    }
    cout << s << '\n';
}
0