結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 106 ms
12,396 KB
testcase_04 AC 103 ms
12,376 KB
testcase_05 AC 102 ms
12,288 KB
testcase_06 AC 102 ms
12,416 KB
testcase_07 AC 99 ms
12,352 KB
testcase_08 AC 95 ms
12,416 KB
testcase_09 AC 98 ms
12,416 KB
testcase_10 AC 99 ms
12,384 KB
testcase_11 AC 98 ms
12,348 KB
testcase_12 AC 94 ms
12,416 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 10 ms
5,248 KB
testcase_24 AC 32 ms
5,632 KB
testcase_25 AC 68 ms
11,264 KB
testcase_26 AC 10 ms
5,248 KB
testcase_27 AC 28 ms
5,504 KB
testcase_28 AC 28 ms
5,504 KB
testcase_29 AC 14 ms
5,248 KB
testcase_30 AC 36 ms
7,296 KB
testcase_31 AC 93 ms
12,032 KB
testcase_32 AC 15 ms
5,248 KB
testcase_33 AC 95 ms
12,416 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