# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
462398 | _Avocado_ | Martian DNA (BOI18_dna) | C++14 | 93 ms | 9904 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |