結果
問題 | No.2333 Slime Structure |
ユーザー | hitonanode |
提出日時 | 2023-05-28 14:45:08 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 227 ms / 3,000 ms |
コード長 | 3,100 bytes |
コンパイル時間 | 2,496 ms |
コンパイル使用メモリ | 193,532 KB |
実行使用メモリ | 67,420 KB |
最終ジャッジ日時 | 2024-06-08 06:07:36 |
合計ジャッジ時間 | 11,007 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 103 ms
35,332 KB |
testcase_03 | AC | 127 ms
39,672 KB |
testcase_04 | AC | 141 ms
39,600 KB |
testcase_05 | AC | 111 ms
36,840 KB |
testcase_06 | AC | 164 ms
41,200 KB |
testcase_07 | AC | 200 ms
67,164 KB |
testcase_08 | AC | 193 ms
67,288 KB |
testcase_09 | AC | 188 ms
67,292 KB |
testcase_10 | AC | 200 ms
67,288 KB |
testcase_11 | AC | 191 ms
67,288 KB |
testcase_12 | AC | 193 ms
67,284 KB |
testcase_13 | AC | 190 ms
67,416 KB |
testcase_14 | AC | 192 ms
67,288 KB |
testcase_15 | AC | 191 ms
67,288 KB |
testcase_16 | AC | 196 ms
67,288 KB |
testcase_17 | AC | 196 ms
67,288 KB |
testcase_18 | AC | 197 ms
67,288 KB |
testcase_19 | AC | 197 ms
67,420 KB |
testcase_20 | AC | 191 ms
67,416 KB |
testcase_21 | AC | 196 ms
67,288 KB |
testcase_22 | AC | 204 ms
67,292 KB |
testcase_23 | AC | 227 ms
67,288 KB |
testcase_24 | AC | 201 ms
67,288 KB |
testcase_25 | AC | 216 ms
67,420 KB |
testcase_26 | AC | 215 ms
67,288 KB |
testcase_27 | AC | 216 ms
67,292 KB |
testcase_28 | AC | 215 ms
67,160 KB |
testcase_29 | AC | 208 ms
67,288 KB |
testcase_30 | AC | 212 ms
67,292 KB |
testcase_31 | AC | 216 ms
67,288 KB |
testcase_32 | AC | 177 ms
67,288 KB |
ソースコード
#include <algorithm> #include <array> #include <bitset> #include <cassert> #include <chrono> #include <cmath> #include <complex> #include <deque> #include <forward_list> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iostream> #include <limits> #include <list> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <sstream> #include <stack> #include <string> #include <tuple> #include <type_traits> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using lint = long long; #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++) #define REP(i, n) FOR(i,0,n) template <class T> std::vector<T> sort_unique(std::vector<T> vec) { sort(vec.begin(), vec.end()), vec.erase(unique(vec.begin(), vec.end()), vec.end()); return vec; } template <class T> int arglb(const std::vector<T> &v, const T &x) { return std::distance(v.begin(), std::lower_bound(v.begin(), v.end(), x)); } template <class T> int argub(const std::vector<T> &v, const T &x) { return std::distance(v.begin(), std::upper_bound(v.begin(), v.end(), x)); } #include <atcoder/segtree> constexpr lint inf = 1LL << 60; struct S { lint sum = 0; lint lmax = 0; lint rmax = 0; lint inmax = 0; lint single_max = -inf; static S init(lint val, lint len) { return S{val * len, max(val, 0LL) * len, max(val, 0LL) * len, max(val, 0LL) * len, val}; } lint get() const { return single_max >= 0 ? inmax : single_max; } }; S op(S l, S r) { return { l.sum + r.sum, max(l.lmax, l.sum + r.lmax), max(r.rmax, r.sum + l.rmax), max({l.inmax, r.inmax, l.rmax + r.lmax}), max(l.single_max, r.single_max), }; } S e() { return S(); } int main() { cin.tie(nullptr), ios::sync_with_stdio(false); int N; cin >> N; vector<int> A(N), B(N); vector<lint> xs; lint r = 0; xs.push_back(r); REP(i, N) { cin >> A.at(i) >> B.at(i); r += B.at(i); xs.push_back(r); } const auto heads = xs; int Q; cin >> Q; vector<tuple<int, lint, lint>> qs; REP(q, Q) { int tp; cin >> tp; if (tp == 1) { lint x, y; cin >> x >> y; --x; xs.push_back(x); xs.push_back(x + 1); qs.emplace_back(tp, x, y); } else { lint l, r; cin >> l >> r; --l; xs.push_back(l), xs.push_back(r); qs.emplace_back(tp, l, r); } } xs = sort_unique(xs); vector<S> init; FOR(i, 1, xs.size()) { const lint xl = xs.at(i - 1), xr = xs.at(i); const int d = argub(heads, xl) - 1; init.push_back(S::init(A.at(d), xr - xl)); } atcoder::segtree<S, op, e> tree(init); for (auto [tp, l, r] : qs) { if (tp == 1) { tree.set(arglb(xs, l), S::init(r, 1)); } else { cout << tree.prod(arglb(xs, l), arglb(xs, r)).get() << '\n'; } } }