Submission #1090566

#TimeUsernameProblemLanguageResultExecution timeMemory
1090566gyg Martian DNA (BOI18_dna)C++17
40 / 100
2071 ms8076 KiB
#pragma GCC optimize("Ofast", "unroll-loops") #pragma GCC target("avx2") #include <bits/stdc++.h> using namespace std; #define arr array #define pii pair<int, int> #define pq priority_queue const int MX_N = 2e5 + 5; int n; arr<int, MX_N> vl, rq; arr<int, MX_N> scr; pq<pii, vector<pii>, greater<pii>> ord; bool chck(int sz) { for (int i = 1; i <= n; i++) scr[i] = -rq[i]; for (int i = 1; i <= sz; i++) scr[vl[i]]++; while (ord.size()) ord.pop(); for (int i = 1; i <= n; i++) ord.push({scr[i], i}); if (ord.top().first >= 0) return true; for (int i = sz + 1; i <= n; i++) { scr[vl[i]]++, scr[vl[i - sz]]--; ord.push({scr[vl[i - sz]], vl[i - sz]}); while (scr[ord.top().second] != ord.top().first) { int j = ord.top().second; ord.pop(); ord.push({scr[j], j}); } if (ord.top().first >= 0) return true; } return false; } int bn_srch() { int lw = 1, hgh = n; while (lw != hgh) { // cout << lw << " " << hgh << endl; int md = (lw + hgh) / 2; if (chck(md)) hgh = md; else lw = md + 1; } return ((chck(lw)) ? lw : -1); } int main() { // freopen("mrt.in", "r", stdin); int tmp1, tmp2; cin >> n >> tmp1 >> tmp2; for (int i = 1; i <= n; i++) { cin >> vl[i]; vl[i]++; } for (int i = 1; i <= tmp2; i++) { int x; cin >> x; cin >> rq[x + 1]; } if (!chck(n)) { cout << "impossible" << endl; exit(0); } int ans = bn_srch(); cout << ans << endl; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...