結果

問題 No.318 学学学学学
ユーザー ttkkggwwttkkggww
提出日時 2024-06-12 19:09:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 4,895 ms
コンパイル使用メモリ 274,288 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-12 19:09:47
合計ジャッジ時間 9,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 19 ms
6,816 KB
testcase_02 AC 23 ms
6,944 KB
testcase_03 AC 16 ms
6,940 KB
testcase_04 AC 21 ms
6,940 KB
testcase_05 AC 149 ms
18,176 KB
testcase_06 AC 112 ms
12,544 KB
testcase_07 AC 92 ms
10,880 KB
testcase_08 AC 74 ms
10,240 KB
testcase_09 AC 60 ms
9,088 KB
testcase_10 AC 41 ms
7,936 KB
testcase_11 AC 150 ms
18,048 KB
testcase_12 AC 92 ms
12,544 KB
testcase_13 AC 75 ms
10,880 KB
testcase_14 AC 62 ms
9,728 KB
testcase_15 AC 52 ms
8,704 KB
testcase_16 AC 35 ms
7,808 KB
testcase_17 AC 71 ms
12,544 KB
testcase_18 AC 65 ms
12,544 KB
testcase_19 AC 72 ms
12,672 KB
testcase_20 AC 32 ms
7,808 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 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,944 KB
testcase_28 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;

const ll INF = 1e18;
const ll ID = 1e18;

ll op(ll a, ll b){
	return max(a, b);
}

ll e(){
	return -INF;
}

ll mapping(ll f, ll x){
	if(f==ID) return x;
	return f;
}

ll composition(ll f, ll g){
	if(f==ID) return g;
	return f;
}

ll id(){
	return ID;
}
int N;
vector<ll> A;

void solve(){
	map<int, vector<int>> mpv;
	for(int i = 0;i<N;++i){
		mpv[A[i]].push_back(i);
	}
	lazy_segtree<ll, op, e,ll,mapping, composition, id> seg(A);
	for(auto [k, v]: mpv){
		vector<int> idx;
		for(auto i: v){
				idx.push_back(i);
		}
		sort(idx.begin(), idx.end());
		if(idx.empty())continue;
		seg.apply(idx[0], idx.back()+1, k);
	}
	for(int i = 0;i<N;i++){
		cout<<seg.get(i)<<" ";
	}
	cout<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> N;
	A.resize(N);
	for(int i=0; i<N; ++i) cin >> A[i];
	solve();
}

0