結果

問題 No.318 学学学学学
ユーザー oyasoyas
提出日時 2015-12-11 15:45:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 72,024 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-06-22 15:29:28
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 19 ms
6,944 KB
testcase_02 AC 22 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 129 ms
10,112 KB
testcase_06 AC 99 ms
8,448 KB
testcase_07 AC 89 ms
7,040 KB
testcase_08 AC 76 ms
6,940 KB
testcase_09 AC 70 ms
6,940 KB
testcase_10 AC 57 ms
6,940 KB
testcase_11 AC 121 ms
10,112 KB
testcase_12 AC 89 ms
6,940 KB
testcase_13 AC 75 ms
6,940 KB
testcase_14 AC 64 ms
6,940 KB
testcase_15 AC 58 ms
6,944 KB
testcase_16 AC 49 ms
6,940 KB
testcase_17 AC 74 ms
8,448 KB
testcase_18 AC 65 ms
7,424 KB
testcase_19 AC 62 ms
8,576 KB
testcase_20 AC 34 ms
6,948 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <set>

using namespace std;

int main(){
	int n, a[100005];
	map<int, int> r;
	set<int, greater<int> > l;
		
	cin >> n;
	for(int i=0; i<n; i++){
		cin>>a[i];
		r[ a[i] ] = i;
	}

	for(int i=0; i<n; i++){
		l.insert(a[i]);
		while( i > r[ *l.begin() ] ) l.erase( l.begin() );
		cout << *l.begin() << " ";
	}
	cout << endl;

	return 0;
}
0