結果

問題 No.1687 What the Heck?
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-11 13:13:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 207,208 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-11 13:13:30
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 44 ms
6,944 KB
testcase_08 AC 56 ms
8,320 KB
testcase_09 WA -
testcase_10 AC 23 ms
5,760 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 132 ms
13,440 KB
testcase_14 AC 130 ms
13,440 KB
testcase_15 AC 136 ms
13,312 KB
testcase_16 AC 134 ms
13,184 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 133 ms
13,440 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<int> p(n);
    for (int i = 0; i < n; i++) {
        cin >> p[i];
    }
    set<int> unused;
    for (int i = 1; i <= n; i++) {
        unused.insert(i);
    }
    long long ans = 0;
    for (int i = n - 1; i >= 0; i--) {
        auto it = unused.lower_bound(p[i] + 1);
        if (it == unused.end()) {
            auto it_prev = prev(it);
            if (*it_prev == p[i]) {
                unused.erase(it_prev);
            } else {
                unused.erase(unused.begin());
                ans -= i + 1;
            }

        } else {
            ans += i + 1;
            unused.erase(it);
        }
    }
    cout << ans << endl;
}
0