結果

問題 No.318 学学学学学
ユーザー fiordfiord
提出日時 2015-12-17 06:24:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 174,196 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-06-22 16:06:13
合計ジャッジ時間 4,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 20 ms
6,944 KB
testcase_02 AC 24 ms
6,944 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 22 ms
6,940 KB
testcase_05 AC 162 ms
10,112 KB
testcase_06 AC 126 ms
8,848 KB
testcase_07 AC 114 ms
7,168 KB
testcase_08 AC 98 ms
6,940 KB
testcase_09 AC 86 ms
6,940 KB
testcase_10 AC 70 ms
6,940 KB
testcase_11 AC 145 ms
10,368 KB
testcase_12 AC 101 ms
6,940 KB
testcase_13 AC 96 ms
6,940 KB
testcase_14 AC 76 ms
6,940 KB
testcase_15 AC 62 ms
6,940 KB
testcase_16 AC 52 ms
6,944 KB
testcase_17 AC 83 ms
8,576 KB
testcase_18 AC 74 ms
7,624 KB
testcase_19 AC 73 ms
8,832 KB
testcase_20 AC 36 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;	cin>>n;
	vector<int> a(n);
	map<int,int> ls;
	for(int i=0;i<n;i++){
		cin>>a[i];
		ls[a[i]]++;
	}
	set<int> used;
	vector<int> b;
	for(int i=0;i<n;i++){
		used.insert(a[i]);
		auto it=used.rbegin();
		while(it!=used.rend()&&ls[*it]==0){
			used.erase(*it);	it=used.rbegin();
		}
		b.push_back(*it);
		ls[a[i]]--;
	}
	for(int i=0;i<(int)b.size();i++)	cout<<(i?" ":"")<<b[i];	
	cout<<endl;
	return 0;
}
	
0