結果
問題 | No.930 数列圧縮 |
ユーザー | leaf_1415 |
提出日時 | 2019-11-22 22:23:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,376 bytes |
コンパイル時間 | 556 ms |
コンパイル使用メモリ | 66,864 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 04:05:12 |
合計ジャッジ時間 | 4,185 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 7 ms
5,248 KB |
testcase_14 | AC | 8 ms
5,248 KB |
testcase_15 | AC | 20 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <stdio.h> #include <queue> #include <stdlib.h> #include <vector> #include <algorithm> #define llint long long using namespace std; llint n; llint a[100005]; bool used[100005]; vector<llint> lvec, rvec, ans; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n; for(int i = 1; i <= n; i++) cin >> a[i]; lvec.push_back(1); for(int i = 1; i < n; i++){ if(a[i] > a[i+1]){ lvec.push_back(i+1); rvec.push_back(i); } } rvec.push_back(n); bool flag = true, valid = false; for(int i = 0; i < lvec.size(); i++){ if(a[n] < a[lvec[i]]) flag = false; } if(flag){ for(int i = 0; i < lvec.size(); i++){ if(lvec[i] < n) ans.push_back(a[lvec[i]]), used[lvec[i]] = true; } for(int i = 1; i < n; i++){ if(!used[i]) ans.push_back(a[i]); } valid = true; } flag = false; for(int i = 0; i < rvec.size(); i++){ if(a[1] > a[rvec[i]]) flag = false; } reverse(rvec.begin(), rvec.end()); if(flag && !valid){ for(int i = 0; i < rvec.size(); i++){ if(rvec[i] > 1) ans.push_back(a[rvec[i]]), used[rvec[i]] = true; } for(int i = n; i > 1; i--){ if(!used[i]) ans.push_back(a[i]); } valid = true; } if(valid){ cout << "Yes" << endl; reverse(ans.begin(), ans.end()); for(int i = 0; i < ans.size(); i++) cout << ans[i] << " "; cout << endl; } else cout << "No" << endl; return 0; }