結果

問題 No.2162 Copy and Paste 2
ユーザー suisensuisen
提出日時 2022-12-19 19:00:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 7,000 ms
コード長 805 bytes
コンパイル時間 1,409 ms
コンパイル使用メモリ 111,272 KB
実行使用メモリ 7,204 KB
最終ジャッジ日時 2024-04-29 02:21:52
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 30 ms
7,068 KB
testcase_07 AC 31 ms
7,104 KB
testcase_08 AC 39 ms
7,072 KB
testcase_09 AC 100 ms
7,200 KB
testcase_10 AC 111 ms
7,200 KB
testcase_11 AC 101 ms
7,068 KB
testcase_12 AC 123 ms
7,200 KB
testcase_13 AC 110 ms
7,200 KB
testcase_14 AC 51 ms
7,200 KB
testcase_15 AC 60 ms
7,184 KB
testcase_16 AC 59 ms
7,204 KB
testcase_17 AC 32 ms
7,068 KB
testcase_18 AC 49 ms
7,200 KB
testcase_19 AC 45 ms
7,196 KB
testcase_20 AC 48 ms
7,072 KB
testcase_21 AC 38 ms
7,076 KB
testcase_22 AC 45 ms
7,072 KB
testcase_23 AC 21 ms
7,040 KB
testcase_24 AC 39 ms
7,196 KB
testcase_25 AC 40 ms
7,200 KB
testcase_26 AC 44 ms
7,196 KB
testcase_27 AC 40 ms
7,200 KB
testcase_28 AC 44 ms
7,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

#include <atcoder/string>
#include <atcoder/segtree>

int op(int x, int y) {
    return std::max(x, y);
}
int e() {
    return 0;
}

int main() {
    std::string s;
    std::cin >> s;
    const int n = s.size();

    std::vector<int> z = atcoder::z_algorithm(s);

    atcoder::segtree<int, op, e> seg(z);

    std::vector<int> dp(n + 1, n);
    dp[1] = 1;

    for (int i = 1; i < n; ++i) {
        dp[i + 1] = std::min(dp[i + 1], dp[i] + 1);

        int c = dp[i] + 1;
        for (int j = i; j < n;) {
            int nj = seg.max_right(j, [&](int v) { return v < i; });
            if (nj == n) break;
            c += (nj - j) + 1;
            dp[nj + i] = std::min(dp[nj + i], c);
            j = nj + i;
        }
    }

    std::cout << dp[n] << std::endl;
}
0