結果
問題 | No.1441 MErGe |
ユーザー | kwm_t |
提出日時 | 2021-03-27 02:11:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 714 ms / 1,000 ms |
コード長 | 1,872 bytes |
コンパイル時間 | 3,705 ms |
コンパイル使用メモリ | 234,432 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-05-06 19:54:18 |
合計ジャッジ時間 | 17,603 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 17 ms
5,376 KB |
testcase_06 | AC | 16 ms
5,376 KB |
testcase_07 | AC | 17 ms
5,376 KB |
testcase_08 | AC | 172 ms
7,040 KB |
testcase_09 | AC | 164 ms
7,040 KB |
testcase_10 | AC | 275 ms
7,040 KB |
testcase_11 | AC | 251 ms
5,376 KB |
testcase_12 | AC | 300 ms
7,168 KB |
testcase_13 | AC | 518 ms
18,560 KB |
testcase_14 | AC | 526 ms
18,416 KB |
testcase_15 | AC | 570 ms
18,304 KB |
testcase_16 | AC | 510 ms
18,488 KB |
testcase_17 | AC | 533 ms
18,460 KB |
testcase_18 | AC | 523 ms
17,856 KB |
testcase_19 | AC | 603 ms
18,092 KB |
testcase_20 | AC | 461 ms
17,588 KB |
testcase_21 | AC | 418 ms
11,136 KB |
testcase_22 | AC | 613 ms
11,008 KB |
testcase_23 | AC | 654 ms
18,728 KB |
testcase_24 | AC | 701 ms
18,792 KB |
testcase_25 | AC | 714 ms
18,632 KB |
testcase_26 | AC | 653 ms
18,816 KB |
testcase_27 | AC | 648 ms
18,688 KB |
testcase_28 | AC | 485 ms
18,688 KB |
testcase_29 | AC | 478 ms
18,688 KB |
ソースコード
#include "bits/stdc++.h" #include "atcoder/all" using namespace std; using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() //#define endl "\n" typedef pair<long long, int> P; //data struct S { long long num; int info; }; //lazy struct F { long long num; int info; }; //★自分で編集 //S*S->S P op(P s_l, P s_r) { return { s_l.first + s_r.first ,s_l.second + s_r.second }; } //op(a,e) = a = op(e,a)なeを返す P e() { return { (long long)0,0 }; } //f(x)を返す関数 P mapping(P f, P s) { if (f.second == -1) { return s; } return f; } //f(g(x))の合成関数 //c(ax+b)+d = acx+(bc+d) //rが先 P composition(P f, P g) { if (f.second == -1) { return g; } if (g.second == -1) { return f; } return f; } //mapping(id,a) = aなidを返す P id() { return { (long long)0,-1 }; } int target; bool f(P v) { return v.second <= target; } int main() { //ios::sync_with_stdio(false); //cin.tie(nullptr); int N, Q; cin >> N >> Q; vector<P>a(N); rep(i, N) { cin >> a[i].first; a[i].second = 1; } lazy_segtree<P, op, e, P, mapping, composition, id> seg(a); while (Q--) { int t, l, r; cin >> t >> l >> r; target = l - 1; int xl = seg.max_right<f>(0); target = r; int xr = seg.max_right<f>(0); if (1 == t) { //更新 long long sum = seg.prod(xl, xr).first; seg.apply(xl, xr, { 0,0 }); seg.apply(xl, xl + 1, { sum ,1 }); } else { //取得 cout << seg.prod(xl, xr).first << endl; } } return 0; }