結果
問題 | No.631 Noelちゃんと電車旅行 |
ユーザー | tottoripaper |
提出日時 | 2018-01-06 00:25:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,533 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 167,056 KB |
実行使用メモリ | 13,824 KB |
最終ジャッジ日時 | 2024-06-02 10:40:47 |
合計ジャッジ時間 | 8,198 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) #define unless(p) if(!(p)) #define until(p) while(!(p)) using ll = long long; using P = std::tuple<int,int>; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; constexpr int BUCKET_SIZE = 320; ll T[100100], TB[100100 / BUCKET_SIZE + 10], SB[100100 / BUCKET_SIZE + 10]; // [l, r) void update(int l, int r, ll d){ while(l < r && l % BUCKET_SIZE > 0){ T[l] += d; TB[l / BUCKET_SIZE] = max(TB[l / BUCKET_SIZE], T[l] + SB[l / BUCKET_SIZE]); ++l; } while(l < r && r % BUCKET_SIZE > 0){ --r; T[r] += d; TB[r / BUCKET_SIZE] = max(TB[r / BUCKET_SIZE], T[r] + SB[r / BUCKET_SIZE]); } l /= BUCKET_SIZE; r /= BUCKET_SIZE; while(l < r){ SB[l] += d; TB[l] += d; } } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int N; std::cin >> N; for(int i=1;i<N;++i){ std::cin >> T[i]; } { int x = 3; for(int i=N-1;i>=1;--i){ T[i] += x; TB[i / BUCKET_SIZE] = max(TB[i / BUCKET_SIZE], T[i]); x += 3; } } int M; std::cin >> M; for(int i=0;i<M;++i){ ll l, r, d; std::cin >> l >> r >> d; update(l, r + 1, d); ll res = *max_element(TB, TB + 100100 / BUCKET_SIZE + 3); std::cout << res << std::endl; } }