Submission #338313

#TimeUsernameProblemLanguageResultExecution timeMemory
338313Kevin_Zhang_TWEditor (BOI15_edi)C++17
0 / 100
26 ms1516 KiB
#include<bits/stdc++.h> #define pb emplace_back #define AI(i) begin(i), end(i) template<class T> bool chmax(T &val, T nv) { return val < nv ? (val = nv, true) : false; } template<class T> bool chmin(T &val, T nv) { return nv < val ? (val = nv, true) : false; } using namespace std; using ll = long long; #ifdef KEV #define DE(args...) kout("[ " + string(#args) + " ] = ", args) void debug(auto L, auto R) { while (L < R) cerr << *L << " \n"[L+1==R], ++L; } void kout(){ cerr << endl; } template<class T1, class ...T2> void kout(T1 a, T2 ...e) { cerr << a << ' ', kout(e...); } #else #define DE(...) 0 #define debug(...) 0 #endif // What I should check // 1. overflow // 2. corner cases // Enjoy the problem instead of hurrying to AC // Good luck ! const int MAX_N = 300010; int n, a[MAX_N], on[MAX_N], res[MAX_N], nxt[MAX_N]; map<int,int> global_cnt; void putin(int v, int d) { if ((global_cnt[v] += d) == 0) global_cnt.erase(v); } int qry() { return global_cnt.empty() ? 0 : global_cnt.rbegin()->first; } int32_t main() { ios_base::sync_with_stdio(0), cin.tie(0); cin >> n; for (int i = 1;i <= n;++i) cin >> a[i]; if (n > 5000) return 1; for (int i = 1;i <= n;++i) { nxt[i] = -1; if (a[i] > 0) { putin(a[i], 1); } else { for (int j = i - 1;j > 0;--j) if (on[j] && a[i] < a[j]) { nxt[i] = j; for (int x = j; x != -1 ;x = nxt[x]) { on[x] ^= 1; if (a[x] > 0) putin(a[x], on[x] ? 1 : -1); } break; } assert(nxt[i] != -1); } res[i] = qry(); on[i] = true; } for (int i = 1;i <= n;++i) cout << res[i] << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...