結果
問題 | No.1558 Derby Live |
ユーザー | Ricky_pon |
提出日時 | 2021-06-25 22:13:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 151 ms / 2,000 ms |
コード長 | 2,684 bytes |
コンパイル時間 | 2,322 ms |
コンパイル使用メモリ | 212,072 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-06-25 08:30:26 |
合計ジャッジ時間 | 8,171 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
7,680 KB |
testcase_01 | AC | 151 ms
7,648 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 89 ms
6,940 KB |
testcase_04 | AC | 42 ms
6,940 KB |
testcase_05 | AC | 46 ms
6,944 KB |
testcase_06 | AC | 81 ms
6,940 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 79 ms
6,940 KB |
testcase_09 | AC | 85 ms
6,940 KB |
testcase_10 | AC | 87 ms
6,940 KB |
testcase_11 | AC | 89 ms
6,944 KB |
testcase_12 | AC | 95 ms
6,944 KB |
testcase_13 | AC | 98 ms
7,040 KB |
testcase_14 | AC | 106 ms
6,944 KB |
testcase_15 | AC | 109 ms
7,040 KB |
testcase_16 | AC | 112 ms
6,940 KB |
testcase_17 | AC | 118 ms
7,680 KB |
testcase_18 | AC | 121 ms
7,640 KB |
testcase_19 | AC | 131 ms
7,552 KB |
testcase_20 | AC | 134 ms
7,680 KB |
testcase_21 | AC | 123 ms
7,680 KB |
testcase_22 | AC | 131 ms
7,680 KB |
testcase_23 | AC | 137 ms
7,552 KB |
testcase_24 | AC | 121 ms
7,680 KB |
testcase_25 | AC | 130 ms
7,680 KB |
testcase_26 | AC | 134 ms
7,552 KB |
testcase_27 | AC | 123 ms
7,552 KB |
testcase_28 | AC | 127 ms
7,552 KB |
testcase_29 | AC | 132 ms
7,552 KB |
testcase_30 | AC | 120 ms
7,552 KB |
testcase_31 | AC | 128 ms
7,648 KB |
testcase_32 | AC | 131 ms
7,680 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/segtree> #define For(i, a, b) for (int i = (int)(a); i < (int)(b); ++i) #define rFor(i, a, b) for (int i = (int)(a)-1; i >= (int)(b); --i) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair<int, int> pii; typedef pair<lint, lint> pll; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } template <class T> T div_floor(T a, T b) { if (b < 0) a *= -1, b *= -1; return a >= 0 ? a / b : (a + 1) / b - 1; } template <class T> T div_ceil(T a, T b) { if (b < 0) a *= -1, b *= -1; return a > 0 ? (a - 1) / b + 1 : a / b; } template <typename T> struct coord_comp { vector<T> v; bool sorted = false; coord_comp() {} int size() { return v.size(); } void add(T x) { v.push_back(x); } void build() { sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); sorted = true; } int get_idx(T x) { assert(sorted); return lower_bound(v.begin(), v.end(), x) - v.begin(); } T &operator[](int i) { return v[i]; } }; constexpr lint mod = 1000000007; constexpr lint INF = mod * mod; constexpr int MAX = 100010; using namespace atcoder; int n, m, q; vector<int> op(vector<int> a, vector<int> b) { rep(i, a.size()) a[i] = b[a[i]]; return a; } vector<int> e() { vector<int> ret(n, 0); iota(ret.begin(), ret.end(), 0); return ret; } int main() { scanf("%d%d%d", &n, &m, &q); segtree<vector<int>, op, e> st(vector<vector<int>>(m, e())); rep(_, q) { int t; scanf("%d", &t); if (t == 1) { int d; scanf("%d", &d); --d; vector<int> tmp(n); rep(i, n) { scanf("%d", &tmp[i]); --tmp[i]; } st.set(d, tmp); } else if (t == 2) { int s; scanf("%d", &s); auto tmp = st.prod(0, s); vector<int> ans(n); rep(i, n) ans[tmp[i]] = i; for (auto x : ans) printf("%d ", x + 1); printf("\n"); } else { int l, r; scanf("%d%d", &l, &r); --l; auto tmp = st.prod(l, r); int ans = 0; rep(i, n) ans += abs(i - tmp[i]); printf("%d\n", ans); } } }