Submission #210738

#TimeUsernameProblemLanguageResultExecution timeMemory
210738balbitmedians (balkan11_medians)C++14
10 / 100
102 ms12908 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int, int> #define ull unsigned ll #define f first #define s second #define ALL(x) x.begin(),x.end() #define SZ(x) (int)x.size() #define SQ(x) (x)*(x) #define MN(a,b) a = min(a,(__typeof__(a))(b)) #define MX(a,b) a = max(a,(__typeof__(a))(b)) #define pb push_back #define SORT_UNIQUE(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end())))) #ifdef BALBIT #define IOS() #define bug(...) fprintf(stderr,"#%d (%s) = ",__LINE__,#__VA_ARGS__),_do(__VA_ARGS__); template<typename T> void _do(T &&x){cerr<<x<<endl;} template<typename T, typename ...S> void _do(T &&x, S &&...y){cerr<<x<<", ";_do(y...);} #else #define IOS() ios_base::sync_with_stdio(0);cin.tie(0); #define endl '\n' #define bug(...) #endif const int iinf = 1<<29; const ll inf = 1ll<<60; const ll mod = 1e9+7; void GG(){cout<<"-1\n"; exit(0);} ll mpow(ll a, ll n, ll mo = mod){ // a^n % mod ll re=1; while (n>0){ if (n&1) re = re*a %mo; a = a*a %mo; n>>=1; } return re; } ll inv (ll b, ll mo = mod){ if (b==1) return b; return (mo-mo/b) * inv(mo%b) % mo; } const int maxn = 3e5+5; signed main(){ IOS(); int n; cin>>n; vector<int> nof(n*2+1); vector<int> a(n); for (int i = 0; i<n; i++) { cin>>a[i]; nof[a[i]] ++; } set<int> p; for (int i = 1; i<=2*n-1; i++) { if (nof[i] == 0) p.insert(i); } vector<int> b; for (int i = n-2; i>=0; i--) { nof[a[i+1]] --; if (nof[a[i+1]] == 0) { p.insert(a[i+1]); } if (a[i+1] > a[i]) { b.pb(*(p.rbegin())); p.erase(*(p.rbegin())); b.pb(*(p.rbegin())); p.erase(*(p.rbegin())); } if (a[i+1] < a[i]) { b.pb(*(p.begin())); p.erase(*(p.begin())); b.pb(*(p.begin())); p.erase(*(p.begin())); } if (a[i+1] == a[i]) { b.pb(*(p.rbegin())); p.erase(*(p.rbegin())); b.pb(*(p.begin())); p.erase(*(p.begin())); } } b.pb(a[0]); for (int i = SZ(b)-1; i>=0; --i) { cout<<b[i]<<' '; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...