結果
問題 | No.1441 MErGe |
ユーザー | kwm_t |
提出日時 | 2021-03-27 01:58:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 407 ms / 1,000 ms |
コード長 | 3,083 bytes |
コンパイル時間 | 4,376 ms |
コンパイル使用メモリ | 235,452 KB |
実行使用メモリ | 18,964 KB |
最終ジャッジ日時 | 2024-05-06 19:43:02 |
合計ジャッジ時間 | 12,535 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 10 ms
6,940 KB |
testcase_06 | AC | 8 ms
6,940 KB |
testcase_07 | AC | 9 ms
6,944 KB |
testcase_08 | AC | 75 ms
7,296 KB |
testcase_09 | AC | 79 ms
7,168 KB |
testcase_10 | AC | 134 ms
7,168 KB |
testcase_11 | AC | 117 ms
6,944 KB |
testcase_12 | AC | 141 ms
7,296 KB |
testcase_13 | AC | 313 ms
18,844 KB |
testcase_14 | AC | 324 ms
18,592 KB |
testcase_15 | AC | 341 ms
18,656 KB |
testcase_16 | AC | 323 ms
18,684 KB |
testcase_17 | AC | 316 ms
18,608 KB |
testcase_18 | AC | 229 ms
18,032 KB |
testcase_19 | AC | 260 ms
18,460 KB |
testcase_20 | AC | 210 ms
17,896 KB |
testcase_21 | AC | 179 ms
11,364 KB |
testcase_22 | AC | 268 ms
11,268 KB |
testcase_23 | AC | 407 ms
18,852 KB |
testcase_24 | AC | 388 ms
18,964 KB |
testcase_25 | AC | 374 ms
18,868 KB |
testcase_26 | AC | 373 ms
18,848 KB |
testcase_27 | AC | 377 ms
18,864 KB |
testcase_28 | AC | 346 ms
18,848 KB |
testcase_29 | AC | 347 ms
18,900 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" pair<long long, int> op(pair<long long, int> a, pair<long long, int> b) { a.first += b.first; a.second += b.second; return a; } pair<long long, int> e() { return make_pair(0LL, 0); } pair<long long, int> mapping(pair<long long, int> a, pair<long long, int> b) { if (a.second == -1)return b; return a; } pair<long long, int> composition(pair<long long, int> a, pair<long long, int> b) { if (a.second == -1)return b; if (b.second == -1)return a; return a; } pair<long long, int> id() { return make_pair(0LL, -1); } int y; bool g(pair<long long, int> x) { return x.second <= y; } int main() { int N, Q; cin >> N >> Q; vector<pair<long long, int>> A(N); rep(i, N) { scanf("%lld", &A[i].first); A[i].second = 1; } lazy_segtree<pair<long long, int>, op, e, pair<long long, int>, mapping, composition, id> seg(A); rep(i, Q) { int T, l, r; scanf("%d %d %d", &T, &l, &r); y = r; r = seg.max_right<g>(0); y = l - 1; l = seg.max_right<g>(0); if (T == 1) { long long S = seg.prod(l, r).first; seg.apply(l, r, e()); seg.set(l, make_pair(S, 1)); } else { printf("%lld\n", seg.prod(l, r).first); } } return 0; } 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 P{ (long long)0,0 }; } //f(x)を返す関数 P mapping(P f, P s) { if (f.second == -1) { return s; } return { f.first,f.second }; } //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 P{ (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<long long>A(N); vector<P>a(N); rep(i, N) { cin >> A[i]; a[i] = { A[i],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) { //更新 int 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; }*/