結果
| 問題 |
No.930 数列圧縮
|
| コンテスト | |
| ユーザー |
ei13337
|
| 提出日時 | 2019-11-22 22:32:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 41 ms / 2,000 ms |
| コード長 | 775 bytes |
| コンパイル時間 | 980 ms |
| コンパイル使用メモリ | 87,244 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-11 04:15:14 |
| 合計ジャッジ時間 | 3,139 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i = 0; i < n; i++) cin >> a[i];
if(a[0] > a[n - 1]) {
cout << "No" << endl;
return 0;
}
cout << "Yes" << endl;
stack<int> st;
vector<int> ans;
st.push(a[0]);
for(int i = 1; i < n - 1; i++) {
if(a[i] > st.top()) ans.push_back(a[i]);
else st.push(a[i]);
}
while(!st.empty()) {
ans.push_back(st.top());
st.pop();
}
for(int i = 0; i < (int)ans.size(); i++) {
if(i) cout << " ";
cout << ans[i];
}
cout << endl;
return 0;
}
ei13337