結果

問題 No.930 数列圧縮
ユーザー MisterMister
提出日時 2020-08-04 18:21:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 959 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 84,588 KB
実行使用メモリ 8,500 KB
最終ジャッジ日時 2024-09-14 19:46:55
合計ジャッジ時間 3,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 55 ms
7,040 KB
testcase_09 AC 66 ms
7,552 KB
testcase_10 AC 50 ms
6,940 KB
testcase_11 AC 56 ms
7,040 KB
testcase_12 AC 66 ms
7,804 KB
testcase_13 AC 35 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 55 ms
8,192 KB
testcase_16 AC 57 ms
8,064 KB
testcase_17 AC 86 ms
8,500 KB
testcase_18 AC 84 ms
8,496 KB
testcase_19 AC 82 ms
8,500 KB
testcase_20 AC 84 ms
8,448 KB
testcase_21 AC 83 ms
8,500 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 59 ms
8,192 KB
testcase_24 AC 2 ms
6,940 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, 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);
        }
    }

    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