結果
問題 | No.1558 Derby Live |
ユーザー | srjywrdnprkt |
提出日時 | 2023-06-12 23:41:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 262 ms / 2,000 ms |
コード長 | 2,504 bytes |
コンパイル時間 | 1,707 ms |
コンパイル使用メモリ | 124,092 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-06-11 23:14:34 |
合計ジャッジ時間 | 12,587 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 236 ms
7,552 KB |
testcase_01 | AC | 262 ms
7,552 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 179 ms
6,940 KB |
testcase_04 | AC | 89 ms
6,940 KB |
testcase_05 | AC | 106 ms
6,944 KB |
testcase_06 | AC | 174 ms
6,940 KB |
testcase_07 | AC | 7 ms
6,944 KB |
testcase_08 | AC | 169 ms
6,940 KB |
testcase_09 | AC | 180 ms
6,944 KB |
testcase_10 | AC | 189 ms
6,940 KB |
testcase_11 | AC | 197 ms
6,940 KB |
testcase_12 | AC | 202 ms
6,944 KB |
testcase_13 | AC | 205 ms
6,940 KB |
testcase_14 | AC | 216 ms
6,948 KB |
testcase_15 | AC | 218 ms
6,940 KB |
testcase_16 | AC | 227 ms
6,940 KB |
testcase_17 | AC | 230 ms
7,552 KB |
testcase_18 | AC | 239 ms
7,552 KB |
testcase_19 | AC | 247 ms
7,552 KB |
testcase_20 | AC | 255 ms
7,552 KB |
testcase_21 | AC | 253 ms
7,552 KB |
testcase_22 | AC | 244 ms
7,552 KB |
testcase_23 | AC | 254 ms
7,552 KB |
testcase_24 | AC | 239 ms
7,552 KB |
testcase_25 | AC | 247 ms
7,552 KB |
testcase_26 | AC | 252 ms
7,552 KB |
testcase_27 | AC | 237 ms
7,552 KB |
testcase_28 | AC | 250 ms
7,552 KB |
testcase_29 | AC | 256 ms
7,552 KB |
testcase_30 | AC | 237 ms
7,552 KB |
testcase_31 | AC | 248 ms
7,552 KB |
testcase_32 | AC | 255 ms
7,552 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> using namespace std; using ll = long long; template<class S, S (*op)(S, S), S (*e)()>struct SegTree { vector<S> seg; int N = 1; SegTree (ll n) : SegTree(vector<S>(n, e())) {} SegTree (const vector<S> &v){ ll n = v.size(); while (N < n) N *= 2; seg.resize(N*2-1, e()); for (ll i=0; i<n; i++) seg[i+N-1] = v[i]; for (ll i=N-2; i>=0; i--){ seg[i] = op(seg[i*2+1], seg[i*2+2]); } } void set(int loc, S val){ loc += N-1; seg[loc] = val; while (loc != 0){ loc = (loc-1)/2; seg[loc] = op(seg[loc*2+1], seg[loc*2+2]); } } //op(a[l], ..., a[r]) S prod (int l, int r) const{ return _prod(l, r, 0, 0, N-1); } S all_prod() const{ return seg[0]; } S _prod (int l, int r, int idx, int bitl, int bitr) const{ if (r < bitl || l > bitr) return e(); if (l <= bitl && bitr <= r) return seg[idx]; ll bitm = (bitl+bitr)/2; return op(_prod(l, r, idx*2+1, bitl, bitm), _prod(l, r, idx*2+2, bitm+1, bitr)); } S get (int i) const{ return seg[i+N-1]; } void show() const{ for (int i=N-1; i<N*2-1; i++) cout << seg[i] << " "; cout << endl; } }; //RMQ int N; using S = vector<int>; S identity; S op(S a, S b){ S c(N); for (int i=0; i<N; i++) c[i] = b[a[i]]; return c; } S e(){ return identity; } // int main(){ int M, q, t, x, y, ans; cin >> N >> M >> q; identity.resize(N); for (int i=0; i<N; i++) identity[i] = i; SegTree<S, op, e> tree(M+1); S P(N), Q(N); while(q){ q--; cin >> t; if (t == 1){ cin >> x; for (int i=0; i<N; i++){ cin >> P[i]; P[i]--; } tree.set(x, P); } else if (t == 2){ cin >> x; P = tree.prod(0, x); for (int i=0; i<N; i++) Q[P[i]] = i+1; for (int i=0; i<N; i++) cout << Q[i] << " "; cout << endl; } else{ cin >> x >> y; ans = 0; P = tree.prod(x, y); for (int i=0; i<N; i++) ans += abs(P[i]-i); cout << ans << endl; } } return 0; }