結果

問題 No.2808 Concentration
ユーザー reirei
提出日時 2024-07-12 22:40:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 1,403 ms
コンパイル使用メモリ 128,376 KB
実行使用メモリ 25,924 KB
最終ジャッジ日時 2024-07-12 22:40:41
合計ジャッジ時間 17,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
25,828 KB
testcase_01 AC 361 ms
25,896 KB
testcase_02 AC 366 ms
25,836 KB
testcase_03 AC 361 ms
25,888 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 135 ms
13,912 KB
testcase_08 AC 52 ms
8,432 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 184 ms
15,580 KB
testcase_11 AC 208 ms
15,264 KB
testcase_12 AC 91 ms
9,180 KB
testcase_13 AC 296 ms
25,344 KB
testcase_14 AC 42 ms
6,940 KB
testcase_15 AC 264 ms
25,096 KB
testcase_16 AC 274 ms
24,872 KB
testcase_17 AC 352 ms
25,556 KB
testcase_18 AC 302 ms
25,868 KB
testcase_19 AC 151 ms
14,512 KB
testcase_20 AC 276 ms
25,476 KB
testcase_21 AC 275 ms
24,768 KB
testcase_22 AC 199 ms
15,188 KB
testcase_23 AC 161 ms
15,036 KB
testcase_24 AC 292 ms
25,124 KB
testcase_25 AC 154 ms
14,668 KB
testcase_26 AC 307 ms
25,192 KB
testcase_27 AC 347 ms
25,896 KB
testcase_28 AC 309 ms
25,848 KB
testcase_29 AC 291 ms
25,872 KB
testcase_30 AC 285 ms
25,888 KB
testcase_31 AC 302 ms
25,768 KB
testcase_32 AC 278 ms
25,884 KB
testcase_33 AC 310 ms
25,876 KB
testcase_34 AC 296 ms
25,924 KB
testcase_35 AC 328 ms
25,832 KB
testcase_36 AC 298 ms
25,916 KB
testcase_37 AC 341 ms
25,848 KB
testcase_38 AC 321 ms
25,864 KB
testcase_39 AC 318 ms
25,824 KB
testcase_40 AC 311 ms
25,872 KB
testcase_41 AC 298 ms
25,728 KB
testcase_42 AC 346 ms
25,872 KB
testcase_43 AC 328 ms
25,840 KB
testcase_44 AC 331 ms
25,868 KB
testcase_45 AC 305 ms
25,852 KB
testcase_46 AC 338 ms
25,852 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <atcoder/lazysegtree.hpp>
#include <atcoder/segtree.hpp>
#include <cassert>
#include <cmath>
#include <cstring>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
// using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 j, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= j;
    j *= j;
    n >>= 1;
  }
  return res;
}

i64 op(i64 a, i64 b) { return max(a, b); }
i64 e() { return 0; }
i64 m(i64 f, i64 x) { return x + f; }
i64 comp(i64 f, i64 g) { return f + g; }

i64 n, s, h;
void _main() {
  cin >> n >> s >> h;
  vector<i64> x(n);
  vector<i64> y(n);
  vector<i64> z(n);
  for (i64 i = 0; i < n; i++) {
    cin >> x[i] >> y[i] >> z[i];
  }
  atcoder::segtree<i64, op, e> xs(n);
  atcoder::lazy_segtree<i64, op, e, i64, m, comp, e> ys(n);
  atcoder::lazy_segtree<i64, op, e, i64, m, comp, e> add(n);
  i64 ans = 0;
  for (i64 i = n - 1; i >= 0; i--) {
    i64 a = upper_bound(x.begin(), x.end(), y[i] + h) - x.begin();
    if (a < n) {
      ys.set(i, xs.prod(a, n));
    }
    i64 b = upper_bound(y.begin(), y.end(), x[i] + s) - y.begin();
    ys.apply(i, b, z[i]);
    add.apply(i, b, z[i]);
    for (i64 j = b; j < n; j++) {
      if (add.get(j) == 0) {
        break;
      }
      add.set(j, 0);
    }
    xs.set(i, ys.prod(i, n));
    ans = max(ans, xs.get(i));
  }
  cout << ans << "\n";
}
0