結果

問題 No.930 数列圧縮
ユーザー MisterMister
提出日時 2020-08-04 18:18:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 85,196 KB
実行使用メモリ 8,628 KB
最終ジャッジ日時 2024-09-14 19:46:51
合計ジャッジ時間 3,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 54 ms
7,040 KB
testcase_09 AC 71 ms
7,680 KB
testcase_10 AC 50 ms
6,940 KB
testcase_11 AC 56 ms
7,040 KB
testcase_12 AC 66 ms
7,680 KB
testcase_13 AC 35 ms
6,944 KB
testcase_14 AC 43 ms
6,940 KB
testcase_15 AC 54 ms
8,192 KB
testcase_16 AC 56 ms
8,192 KB
testcase_17 AC 83 ms
8,628 KB
testcase_18 AC 86 ms
8,496 KB
testcase_19 AC 84 ms
8,576 KB
testcase_20 AC 83 ms
8,448 KB
testcase_21 AC 82 ms
8,500 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 59 ms
8,192 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>

void solve() {
    int n;
    std::cin >> n;

    std::set<int> rem;
    for (int i = 1; i <= n; ++i) rem.insert(i);

    std::vector<int> ans;
    std::vector<int> stk;
    while (n--) {
        int x;
        std::cin >> x;
        rem.erase(x);

        if (stk.empty() || x < stk.back()) {
            stk.push_back(x);

        } else if (rem.lower_bound(stk.front()) == rem.end()) {
            if (x < stk.front()) {
                std::cout << "No\n";
                return;
            }

            while (!stk.empty()) {
                ans.push_back(stk.back());
                stk.pop_back();
            }
            stk.push_back(x);

        } else {
            ans.push_back(x);
        }
    }

    if (stk.size() != 1) {
        std::cout << "No\n";
    } else {
        std::cout << "Yes\n";
        for (auto a : ans) std::cout << a << " ";
        std::cout << "\n";
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0