# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
891033 | 2023-12-22T06:37:33 Z | Hhw48 | Martian DNA (BOI18_dna) | C++14 | 2000 ms | 4336 KB |
#include <bits/stdc++.h> using namespace std; #define int long long typedef pair<int,int> pii; #define fi first #define se second #define pb push_back int32_t main(){ ios::sync_with_stdio(0); cin.tie(0); int n,k,r; cin>>n>>k>>r; string s=""; int tmp=0,tmp2=0; for(int i=0; i<n; i++){ char x; cin>>x; s += x; } multiset<int>mset; unordered_set <int> uset; vector<pii>vec; for(int i=0; i<r; i++){ int a,b; cin>>a>>b; vec.pb({a,b}); tmp += b; uset.insert(a); } for(int i=0; i<n; i++){ if(uset.count(s[i]-'0')==1){ tmp2++; } } if(tmp2<tmp){ cout<<"impossible"; return 0; } for(int i=tmp; i<n; i++){ for(int x=0; x<n-i; x++){ int idx=x; while(idx<x+i){ if(uset.count(s[idx]-'0')==1){ mset.insert(s[idx]-'0'); } idx++; } bool flag=false; for(int j=0; j<r; j++){ if(mset.count(vec[j].fi)<vec[j].se)flag=true; } if(flag==0){ cout<<i; exit(0); } mset.clear(); } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 344 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2086 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2031 ms | 4336 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 4288 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |