結果

問題 No.2139 K Consecutive Sushi
ユーザー SSRSSSRS
提出日時 2022-12-03 00:20:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,663 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 175,332 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-05 19:21:43
合計ジャッジ時間 7,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 273 ms
12,152 KB
testcase_04 AC 316 ms
12,160 KB
testcase_05 AC 279 ms
12,144 KB
testcase_06 AC 253 ms
12,220 KB
testcase_07 AC 281 ms
12,268 KB
testcase_08 AC 297 ms
12,288 KB
testcase_09 AC 298 ms
12,240 KB
testcase_10 AC 304 ms
12,136 KB
testcase_11 AC 300 ms
12,288 KB
testcase_12 AC 289 ms
12,160 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 26 ms
5,376 KB
testcase_24 AC 88 ms
5,504 KB
testcase_25 AC 211 ms
11,868 KB
testcase_26 AC 25 ms
5,376 KB
testcase_27 AC 74 ms
5,632 KB
testcase_28 AC 74 ms
5,504 KB
testcase_29 AC 36 ms
5,376 KB
testcase_30 AC 98 ms
7,648 KB
testcase_31 AC 270 ms
12,160 KB
testcase_32 AC 36 ms
5,376 KB
testcase_33 AC 269 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct lazy_segment_tree{
  int N;
  vector<long long> ST, lazy;
  lazy_segment_tree(int N2){
    N = 1;
    while (N < N2){
      N *= 2;
    }
    ST = vector<long long>(N * 2 - 1, 0);
    lazy = vector<long long>(N * 2 - 1, 0);
  }
  void push(int i){
    if (i < N - 1){
      lazy[i * 2 + 1] += lazy[i];
      lazy[i * 2 + 2] += lazy[i];
    }
    ST[i] += lazy[i];
    lazy[i] = 0;
  }
  void range_add(int L, int R, long long x, int i, int l, int r){
    push(i);
    if (r <= L || R <= l){
      return;
    } else if (L <= l && r <= R){
      lazy[i] += x;
      push(i);
    } else {
      int m = (l + r) / 2;
      range_add(L, R, x, i * 2 + 1, l, m);
      range_add(L, R, x, i * 2 + 2, m, r);
      ST[i] = max(ST[i * 2 + 1], ST[i * 2 + 2]);
    }
  }
  void range_add(int L, int R, long long x){
    range_add(L, R, x, 0, 0, N);
  }
  long long range_max(int L, int R, int i, int l, int r){
    push(i);
    if (r <= L || R <= l){
      return 0;
    } else if (L <= l && r <= R){
      return ST[i];
    } else {
      int m = (l + r) / 2;
      return max(range_max(L, R, i * 2 + 1, l, m), range_max(L, R, i * 2 + 2, m, r));
    }
  }
  long long range_max(int L, int R){
    return range_max(L, R, 0, 0, N);
  }
  long long all(){
    push(0);
    return ST[0];
  }
};
int main(){
  int N, K;
  cin >> N >> K;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  lazy_segment_tree dp(N + 1);
  for (int i = 0; i < N; i++){
    dp.range_add(i + 1, i + 2, dp.range_max(max(i - K + 1, 0), i + 1));
    dp.range_add(max(i - K + 2, 0), i + 1, A[i]);
  }
  cout << dp.all() << endl;
}
0