結果

問題 No.930 数列圧縮
ユーザー firiexpfiriexp
提出日時 2019-11-23 00:12:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,520 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 100,772 KB
実行使用メモリ 7,560 KB
最終ジャッジ日時 2024-04-27 15:48:54
合計ジャッジ時間 3,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 24 ms
6,944 KB
testcase_09 AC 26 ms
6,944 KB
testcase_10 AC 21 ms
6,940 KB
testcase_11 AC 22 ms
6,940 KB
testcase_12 AC 24 ms
7,040 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 27 ms
7,040 KB
testcase_16 AC 29 ms
7,040 KB
testcase_17 AC 31 ms
7,552 KB
testcase_18 AC 31 ms
7,552 KB
testcase_19 AC 30 ms
7,560 KB
testcase_20 AC 31 ms
7,552 KB
testcase_21 AC 29 ms
7,552 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 29 ms
6,940 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 <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
#include <list>

static const int MOD = 1000000007;
using ll = long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;


template <class T>
ostream& operator<<(ostream& os, vector<T> v) {
    os << "{";
    for (int i = 0; i < v.size(); ++i) {
        if(i) os << ", ";
        os << v[i];
    }
    return os << "}";
}

template <class L, class R>
ostream& operator<<(ostream& os, pair<L, R> p) {
    return os << "{" << p.first << ", " << p.second << "}";
}


int main() {
    int n;
    cin >> n;
    vector<int> v(n);
    for (auto &&i : v) scanf("%d", &i);
    if(v.front() > v.back()){
        puts("No");
        return 0;
    }
    vector<int> ans;
    list<int> l(v.begin(),v.end());
    for(auto i = l.begin(); i != l.end(); ++i){
        while(true){
            auto j = next(i, 1);
            if(j != l.end() && next(j, 1) != l.end() && *i < *j && *l.begin() < *j){
                ans.emplace_back(*j);
                l.erase(j);
            }else break;
        }
    }
    l.reverse();
    if(!l.empty()){
        for(auto i = ++l.begin(); i != l.end(); ++i){
            ans.emplace_back(*i);
        }
    }
    puts("Yes");
    for (int i = 0; i < n-1; ++i) {
        if(i) printf(" ");
        printf("%d", ans[i]);
    }
    puts("");
    return 0;
}
0