結果

問題 No.2139 K Consecutive Sushi
ユーザー suisensuisen
提出日時 2022-12-04 00:45:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 95,684 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-05 19:23:08
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 108 ms
12,544 KB
testcase_04 AC 108 ms
12,444 KB
testcase_05 AC 109 ms
12,416 KB
testcase_06 AC 107 ms
12,344 KB
testcase_07 AC 106 ms
12,408 KB
testcase_08 AC 94 ms
12,488 KB
testcase_09 AC 99 ms
12,544 KB
testcase_10 AC 102 ms
12,504 KB
testcase_11 AC 99 ms
12,492 KB
testcase_12 AC 90 ms
12,532 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 31 ms
5,760 KB
testcase_25 AC 69 ms
11,344 KB
testcase_26 AC 11 ms
5,376 KB
testcase_27 AC 27 ms
5,760 KB
testcase_28 AC 28 ms
5,632 KB
testcase_29 AC 14 ms
5,376 KB
testcase_30 AC 38 ms
7,424 KB
testcase_31 AC 92 ms
12,144 KB
testcase_32 AC 15 ms
5,376 KB
testcase_33 AC 99 ms
12,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <limits>
#include <vector>

#include <atcoder/lazysegtree>

long long op(long long x, long long y) {
    return std::max(x, y);
}
long long e() {
    return std::numeric_limits<long long>::min();
}
long long mapping(long long f, long long x) {
    return f + x;
}
long long composition(long long f, long long g) {
    return f + g;
}
long long id() {
    return 0;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n, k;
    std::cin >> n >> k;

    std::vector<long long> a(n);
    for (auto &e : a) std::cin >> e;

    atcoder::lazy_segtree<long long, op, e, long long, mapping, composition, id> seg(n + 1);
    seg.set(n, 0);

    for (int i = 0; i < n; ++i) {
        seg.set(n - i - 1, seg.all_prod());
        seg.apply(n - i, std::min(n + 1, n - i + k - 1), a[i]);
    }

    std::cout << seg.all_prod() << std::endl;
}
0