結果

問題 No.930 数列圧縮
ユーザー leaf_1415leaf_1415
提出日時 2019-11-22 23:09:17
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 64,496 KB
実行使用メモリ 5,268 KB
最終ジャッジ日時 2024-10-11 04:44:38
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#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> ans;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> a[i];
	
	if(a[1] > a[n]){
		cout << "No" << endl;
		return 0;
	}
	
	for(int i = n; i > 1; i--){
		if(a[i] > a[1]) ans.push_back(a[i]), used[i] = true;
	}
	for(int i = 2; i <= n; i++){
		if(!used[i]) ans.push_back(a[i]);
	}
	reverse(ans.begin(), ans.end());
	
	cout << "Yes" << endl;
	for(int i = 0; i < ans.size(); i++) cout << ans[i] << " "; cout << endl;
	
	return 0;
}
0