이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mp make_pair
#define eb emplace_back
#define fi first
#define se second
using namespace std;
using cd = complex <double>;
 
typedef pair <int, int> pii;
const int N = 3e3 + 5;
const long long INF = 1e18;
const int mod = 998244353;//786433;//998244353;
const double Pi = acos(-1);
 
 
void Fastio()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
}
 
int n, k, rt;
int a[200005], cnt[200005], b[200005];
 
int main()
{
	Fastio();
	cin >> n >> k >> rt;
	for(int i = 0; i < n; i++)
	{
		cin >> a[i];
	}
	for(int i = 0; i < rt; i++)
	{
		int temp;
		cin >> temp;
		cin >> b[temp];
	}
	int l = 1, r = n + 1;
	while(l < r)
	{
		int mid = (l + r) >> 1;
		int cc = 0;
		for(int i = 0; i <= k; i++)
		{
			cnt[i] = 0;
		}
		for(int i = 0; i < mid; i++)
		{
			cnt[a[i]]++;
			if(cnt[a[i]] == b[a[i]])
			{
				cc++;
			}
		}
		bool ok = false;
		if(cc == rt)
		{
			ok = true;
		}
		for(int i = mid; i < n; i++)
		{
			if(cnt[a[i - mid]] == b[a[i - mid]])
			{
				cc--;
			}
			cnt[a[i - mid]]--;
			cnt[a[i]]++;
			if(cnt[a[i]] == b[a[i]])
			{
				cc++;
			}
			if(cc == rt or ok == true)
			{
				ok = true;
				break;
			}
		}
		if(ok)
		{
			r = mid;
		}
		else
		{
			l = mid + 1;
		}
	} 	
	if(l == n + 1)
	{
		cout << "impossible";
		return 0;
	}
	cout << l;
}
| # | 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... |