# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
927079 |
2024-02-14T08:41:17 Z |
vjudge1 |
Martian DNA (BOI18_dna) |
C++17 |
|
324 ms |
18776 KB |
// #pragma GCC target ("avx2")
// #pragma GCC optimization ("O3")
// #pragma GCC optimization ("unroll-loops")
#include <bits/stdc++.h>
#define int long long
#define ff first
#define ss second
#define pb push_back
#define yes cout<<"Yes\n"
#define no cout<<"No\n"
#define no1 cout<<"-1\n"
using namespace std;
const int N = 2e5+100;
const int M = 1e5+10;
const int INF = 1e18;
const int mod = 1e9+7;
// int binpow (int a, int n) {
// if (n == 0)
// return 1;
// if (n % 2 == 1)
// return (binpow (a, n-1) * a)%mod;
// else {
// int b = binpow (a, n/2);
// return (b * b)%mod;
// }
// }
int n,k,R;
int a[N];
map<int,int> mn;
map<int,int> mx;
map<int,int> m;
int d[N];
void solve(){
cin>>n>>k>>R;
for(int i = 1;i<=n;i++){
cin>>a[i];
if(!mn[a[i]]) mn[a[i]] = i;
mx[a[i]] = i;
m[a[i]]++;
}
int l = INF;
int r = 0;
while(R--){
int b,q;
cin>>b>>q;
d[b] = q;
if(m[b] < q){
cout<<"impossible\n";
return;
}
l = min(l,mn[b]);
r = max(r,mx[b]);
}
m.clear();
for(int i = l;i<=r;i++){
m[a[i]]++;
}
while(1){
if(l==r){
break;
}
int x = m[a[l]]-1-d[a[l]];
int y = m[a[r]]-1-d[a[r]];
if(x<0 && y<0) break;
else if(y<0 || x>y){
m[a[l]]--;
l++;
}
else{
m[a[r]]--;
r--;
}
}
cout<<r-l+1<<'\n';
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
// cout.tie(nullptr);
int t = 1;
// cin>>t;
// cout<<"";
for(int i = 1;i<=t;i++){
// cout<<"Case "<<i<<": ";
solve();
// cout<<'\n';
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
2396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
3268 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
324 ms |
18776 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |