結果

問題 No.318 学学学学学
ユーザー kmjpkmjp
提出日時 2015-12-11 00:11:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 175,984 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-06-22 14:33:47
合計ジャッジ時間 5,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
9,796 KB
testcase_01 AC 28 ms
10,948 KB
testcase_02 AC 31 ms
11,716 KB
testcase_03 AC 21 ms
10,568 KB
testcase_04 AC 28 ms
11,340 KB
testcase_05 AC 233 ms
24,392 KB
testcase_06 AC 169 ms
17,604 KB
testcase_07 AC 131 ms
15,044 KB
testcase_08 AC 97 ms
12,740 KB
testcase_09 AC 70 ms
10,812 KB
testcase_10 AC 46 ms
8,776 KB
testcase_11 AC 232 ms
24,264 KB
testcase_12 AC 129 ms
16,576 KB
testcase_13 AC 94 ms
14,016 KB
testcase_14 AC 68 ms
11,720 KB
testcase_15 AC 48 ms
10,304 KB
testcase_16 AC 33 ms
8,780 KB
testcase_17 AC 95 ms
18,632 KB
testcase_18 AC 76 ms
16,716 KB
testcase_19 AC 97 ms
18,760 KB
testcase_20 AC 27 ms
8,768 KB
testcase_21 AC 4 ms
8,388 KB
testcase_22 AC 4 ms
8,392 KB
testcase_23 AC 4 ms
8,264 KB
testcase_24 AC 4 ms
8,524 KB
testcase_25 AC 5 ms
8,260 KB
testcase_26 AC 4 ms
8,256 KB
testcase_27 AC 4 ms
8,392 KB
testcase_28 AC 4 ms
8,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,A[101010];
map<int,int> mi,ma;
vector<int> sev[101010],eev[101010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>A[i];
		if(mi.count(A[i])) ma[A[i]]=i;
		else mi[A[i]]=ma[A[i]]=i;
	}
	
	FORR(r,mi) {
		sev[r.second].push_back(r.first);
		eev[ma[r.first]].push_back(r.first);
	}
	
	set<int> S;
	FOR(i,N) {
		FORR(r,sev[i]) S.insert(r);
		_P("%d",*S.rbegin());
		FORR(r,eev[i]) S.erase(r);
		_P("%c",(i==N-1)?'\n':' ');
	}
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0