結果

問題 No.318 学学学学学
ユーザー E31415926E31415926
提出日時 2017-02-21 20:59:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 180,464 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-22 18:10:36
合計ジャッジ時間 4,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 19 ms
6,812 KB
testcase_02 AC 21 ms
6,944 KB
testcase_03 AC 14 ms
6,940 KB
testcase_04 AC 18 ms
6,944 KB
testcase_05 AC 111 ms
11,136 KB
testcase_06 AC 121 ms
9,344 KB
testcase_07 AC 117 ms
8,320 KB
testcase_08 AC 99 ms
7,168 KB
testcase_09 AC 86 ms
6,940 KB
testcase_10 AC 66 ms
6,944 KB
testcase_11 AC 113 ms
11,264 KB
testcase_12 AC 85 ms
8,320 KB
testcase_13 AC 78 ms
7,296 KB
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 59 ms
6,940 KB
testcase_16 AC 53 ms
6,944 KB
testcase_17 AC 82 ms
10,496 KB
testcase_18 AC 65 ms
8,192 KB
testcase_19 AC 83 ms
10,496 KB
testcase_20 AC 36 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,948 KB
testcase_24 AC 2 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,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define rep(i,n) for(int i=0;i<(n);++i)
#define INF (1ll<<60)
typedef pair<int, int> pii;
#define FI first
#define SE second
#define all(s) s.begin(),s.end()
#define RREP(i,n) for(int i=(n)-1;i>=0;--i)

int N;
int A[100100];
int B[100100];
map<int, int> last;

signed main() {
	cin >> N;
	rep(i,N)
	{
		cin >> A[i];
		last[A[i]] = i;
	}
	set<int> S;
	rep(i,N)
	{
		S.insert(A[i]);
		B[i] = *S.rbegin();
		if (last[A[i]] == i)
			S.erase(A[i]);
	}
	rep(i,N)
	{
		cout << (i ? " " : "") << B[i];
	}
	cout << endl;
}
0