답안 #731658

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
731658 2023-04-27T18:07:25 Z NintsiChkhaidze Martian DNA (BOI18_dna) C++17
0 / 100
29 ms 3440 KB
#include <bits/stdc++.h>
using namespace std;

const int N = 2e5 + 5,inf=1e9;
int a[N],mn[N],cnt[N];

signed main (){
	
	ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
	int n,k,R;
	cin>>n>>k>>R;
	
	for (int i = 1; i <= n; i++){
		cin>>a[i];
	}
	
	for (int i = 1; i <= k; i++) mn[i] = inf;
	for (int i = 1; i <= R; i++){
		int x,y;
		cin>>x>>y;
		mn[x] = y;
	}
	
	int C = R,r = 1,ans=inf;
	cnt[a[1]]++;
	if (cnt[a[1]] >= mn[a[1]]) --C;
	
	for (int i = 1; i <= n; i++){
		while (C > 0 && r + 1 <= n){
			++r;
			cnt[a[r]]++;
			if (cnt[a[r]] - 1 < mn[a[r]] && cnt[a[r]] >= mn[a[r]]) 
				C--;
		}
		if (C == 0) ans=min(ans,r - i + 1);
		
		int dl = 0;
		if (cnt[a[i]] >= mn[a[i]]) ++dl;
		cnt[a[i]]--;
		if (cnt[a[i]] >= mn[a[i]]) --dl;
		C -= dl;
	}
	if(ans==inf) cout<<"Impossible";
	else cout<<ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 324 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 12 ms 1492 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 29 ms 3440 KB Output isn't correct
2 Halted 0 ms 0 KB -