이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)x.size())
#define sumof(x) accumulate(all(x), 0ll)
const int N=2e5+1;
int n, ans[N];
map<int, vector<pair<int, int>>> mp;
void solve(int tc){
// cout << "Case #" << tc << ": ";
cin >> n;
for (int i=1; i<=n; ++i){
int x;
cin >> x;
if (mp.count(x) && mp[x].size()){
auto j=mp[x].back();
mp[x].pop_back();
for (auto it=mp.begin(); it!=mp.end();){
while (it->second.size() && it->second.back()>=j) it->second.pop_back();
if (it->second.empty()) it=mp.erase(it);
else ++it;
}
mp[x].emplace_back(j.first, i);
}else mp[x].emplace_back(i, i);
}
for (auto& i:mp) for (auto& j:i.second) for (int k=j.first; k<=j.second; ++k) ans[k]=i.first;
for (int i=1; i<=n; ++i) cout << ans[i] << '\n';
}
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int ntests=1;
// cin >> ntests;
for (int i=1; i<=ntests; ++i) solve(i);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |