結果
問題 | No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに |
ユーザー | Kude |
提出日時 | 2022-10-14 22:31:49 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 292 ms / 6,000 ms |
コード長 | 1,605 bytes |
コンパイル時間 | 2,909 ms |
コンパイル使用メモリ | 244,176 KB |
実行使用メモリ | 32,708 KB |
最終ジャッジ日時 | 2024-06-26 15:52:16 |
合計ジャッジ時間 | 17,337 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 42 |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; struct S { ll a, b; }; S op(S x, S y) { return {x.a + y.a, x.b + y.b}; } S e() { return {0, 0}; } } int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; VI a(n), t(n); vector<tuple<int, int, int, int>> qs; vector<S> init(n); rep(i, n) { int a, t; cin >> a >> t; init[i] = {0, a}; qs.emplace_back(t, -n + i, a, 0); qs.emplace_back(t + a, -n + i, a, 0); } segtree<S, op, e> seg(init); int q; cin >> q; rep(i, q) { int d, l, r; cin >> d >> l >> r; l--; qs.emplace_back(d, i, l, r); } sort(all(qs)); VL ans(q); for(auto [t, i, l, r]: qs) { if (i < 0) { i += n; if (seg.get(i).a == 0) seg.set(i, {-1, t + l - 1}); else seg.set(i, {0, 0}); } else { auto [a, b] = seg.prod(l, r); ans[i] = a * t + b; } } for(ll x: ans) cout << x << '\n'; }