이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
using namespace std;
#define islam_zymchybekov void solve()
#define ios ios::sync_with_stdio(false); cin.tie(NULL);
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define fr first
#define sc second
#define nl cout<<'\n';
#define int long long
typedef vector<int> vi;
typedef pair<int,int> pi;
islam_zymchybekov{
int n;
map<int,int>mp;
cin>>n;
int x,a[n+1]{};
int j=0,mn=0;
vector<pair<int,pair<int,int>>>v;
for(int i=1;i<=n;i++){
cin>>x;
if(mp[x]!=0 && mp[x]>mn){
mn=i;
v.pb({mp[x],{i,x}});
// j++;
}
a[i]=x;
mp[x]=i;
}
nl;
for(int i=1;i<=n;i++){
if(i<v[j].fr)cout<<a[i]<<endl;
else if(i>=v[j].fr && i<=v[j].sc.fr){
cout<<v[j].sc.sc<<endl;
if(i==v[j].sc.fr)j++;
}
}
}
main(){
ios;
int T = 1;
// cin >> T;
while(T--){
solve();
}
//cout<<fixed<<setprecision(10);
//cerr<<"Time:"<<1000*((double)clock())/(double)CLOCKS_PER_SEC<<"ms\n";__int128
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp:41:2: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
41 | main(){
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |