# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
462398 | 2021-08-10T13:07:54 Z | _Avocado_ | Martian DNA (BOI18_dna) | C++14 | 93 ms | 9904 KB |
#include <bits/stdc++.h> #define int int64_t using namespace std; signed main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n, k, q; cin>>n>>k>>q; vector<int>v(n); for(auto&u: v) cin>>u; vector<int>goal(k); for(int i = 0; i<q; ++i){ int a, b; cin>>a>>b; goal[a] = b; } int ans = 1e9; int start = 0; vector<int>cur(k); map<int, int>full; for(int i = 0; i<n; ++i){ if(full.size() == q) ans = min(ans, i-start); ++cur[v[i]]; if(cur[v[i]] > goal[v[i]] && v[start] == v[i]){ ++start; --cur[v[start]]; } if(cur[v[i]] >= goal[v[i]] && goal[v[i]] != 0) full[v[i]] = 1; } if(ans == 1e9) cout<<"impossible"; else cout<<ans; cout<<'\n'; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 2260 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 93 ms | 9904 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |