結果
問題 | No.711 競技レーティング単調増加 |
ユーザー | fine |
提出日時 | 2018-06-29 23:14:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,393 bytes |
コンパイル時間 | 1,849 ms |
コンパイル使用メモリ | 176,616 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 00:13:46 |
合計ジャッジ時間 | 4,505 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 46 ms
6,940 KB |
testcase_37 | AC | 59 ms
6,944 KB |
testcase_38 | AC | 51 ms
6,940 KB |
testcase_39 | AC | 26 ms
6,940 KB |
testcase_40 | AC | 34 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 28 ms
6,940 KB |
testcase_43 | AC | 40 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1145141919; template <typename T> struct SegmentTree { int n; vector<T> data; T INITIAL_VALUE; //使うときは、この2つを適宜変更する static T merge(T x, T y); void updateNode(int k, T x); SegmentTree(int size, T initial_value) { n = 1; INITIAL_VALUE = initial_value; while (n < size) n *= 2; data.resize(2 * n - 1, INITIAL_VALUE); } T getLeaf(int k) { return data[k + n - 1]; } void update(int k, T x) { k += n - 1; //葉の節点 updateNode(k, x); while (k > 0) { k = (k - 1) / 2; data[k] = merge(data[k * 2 + 1], data[k * 2 + 2]); } } //区間[a, b)に対するクエリに答える //k:節点番号, [l, r):節点に対応する区間 T query(int a, int b, int k, int l, int r) { //[a, b)と[l, r)が交差しない場合 if (r <= a || b <= l) return INITIAL_VALUE; //[a, b)が[l, r)を含む場合、節点の値 if (a <= l && r <= b) return data[k]; else { //二つの子をマージ T vl = query(a, b, k * 2 + 1, l, (l + r) / 2); T vr = query(a, b, k * 2 + 2, (l + r) / 2, r); return merge(vl, vr); } } //外から呼ぶ用 T query(int a, int b) { return query(a, b, 0, 0, n); } }; //使うときは以下2つを変更 template <typename T> T SegmentTree<T>::merge(T x, T y) { return min(x, y); } template <typename T> void SegmentTree<T>::updateNode(int k, T x) { data[k] = min(data[k], x); } int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n), idx(n); for (int i = 0; i < n; i++) { cin >> a[i]; idx[i] = i; } auto comp = [&](const int i1, const int i2){ if (a[i1] != a[i2]) { return a[i1] < a[i2]; } return i1 > i2; }; sort(idx.begin(), idx.end(), comp); SegmentTree<int> dp(n + 1, INF); for (int i : idx) { if (a[i] > i) dp.update(i, 0); int x = dp.query(0, i) - 1; dp.update(i, x); } dp.update(n, 0); int x = dp.query(0, n) - 1; dp.update(n, x); cout << dp.query(n, n + 1) + n << endl; return 0; }