結果

問題 No.318 学学学学学
ユーザー fiordfiord
提出日時 2015-12-16 13:44:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,488 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 169,840 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-06-22 16:05:09
合計ジャッジ時間 11,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 19 ms
6,820 KB
testcase_02 AC 23 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 146 ms
14,720 KB
testcase_06 AC 1,067 ms
9,472 KB
testcase_07 AC 1,048 ms
7,680 KB
testcase_08 AC 853 ms
6,940 KB
testcase_09 AC 541 ms
6,944 KB
testcase_10 AC 118 ms
6,940 KB
testcase_11 AC 153 ms
14,976 KB
testcase_12 AC 97 ms
9,472 KB
testcase_13 AC 83 ms
7,552 KB
testcase_14 AC 74 ms
6,940 KB
testcase_15 AC 66 ms
6,944 KB
testcase_16 AC 56 ms
6,940 KB
testcase_17 AC 1,488 ms
9,472 KB
testcase_18 AC 67 ms
9,472 KB
testcase_19 AC 1,479 ms
9,344 KB
testcase_20 AC 40 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;	cin>>n;
	vector<int> a(n);
	map<int,vector<int>> ls;
	for(int i=0;i<n;i++){
		cin>>a[i];
		ls[a[i]].push_back(i);
	}
	vector<int> b=a;
	for(auto i=ls.begin();i!=ls.end();i++){
		int e=i->second.size();
		for(int j=i->second[0];j<=i->second[e-1];j++){
			b[j]=i->first;
		}
	}
	for(int i=0;i<(int)b.size();i++)	cout<<(i?" ":"")<<b[i];
	cout<<endl;
	return 0;
}
	
0