結果

問題 No.2930 Larger Mex
ユーザー pengin_2000pengin_2000
提出日時 2024-10-12 16:35:12
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-12 16:35:22
合計ジャッジ時間 6,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 54 ms
10,368 KB
testcase_09 AC 51 ms
9,984 KB
testcase_10 AC 56 ms
10,624 KB
testcase_11 AC 46 ms
9,728 KB
testcase_12 AC 63 ms
10,496 KB
testcase_13 AC 60 ms
10,624 KB
testcase_14 AC 67 ms
10,496 KB
testcase_15 AC 52 ms
10,368 KB
testcase_16 AC 47 ms
9,856 KB
testcase_17 AC 58 ms
10,624 KB
testcase_18 AC 46 ms
9,856 KB
testcase_19 AC 60 ms
10,624 KB
testcase_20 AC 58 ms
10,496 KB
testcase_21 AC 57 ms
10,496 KB
testcase_22 AC 65 ms
10,496 KB
testcase_23 AC 52 ms
9,984 KB
testcase_24 AC 55 ms
10,496 KB
testcase_25 AC 66 ms
10,368 KB
testcase_26 AC 53 ms
10,496 KB
testcase_27 AC 44 ms
9,728 KB
testcase_28 AC 50 ms
10,240 KB
testcase_29 AC 51 ms
10,112 KB
testcase_30 AC 49 ms
9,984 KB
testcase_31 AC 41 ms
9,344 KB
testcase_32 AC 51 ms
10,112 KB
testcase_33 AC 53 ms
10,240 KB
testcase_34 AC 64 ms
10,624 KB
testcase_35 AC 38 ms
6,784 KB
testcase_36 AC 61 ms
10,368 KB
testcase_37 AC 57 ms
10,240 KB
testcase_38 AC 55 ms
10,496 KB
testcase_39 AC 56 ms
10,368 KB
testcase_40 AC 56 ms
10,496 KB
testcase_41 AC 49 ms
9,984 KB
testcase_42 AC 52 ms
10,368 KB
testcase_43 AC 51 ms
10,240 KB
testcase_44 AC 52 ms
10,240 KB
testcase_45 AC 51 ms
10,240 KB
testcase_46 AC 66 ms
10,496 KB
testcase_47 AC 64 ms
10,368 KB
testcase_48 AC 50 ms
9,600 KB
testcase_49 AC 68 ms
10,496 KB
testcase_50 AC 58 ms
10,624 KB
testcase_51 AC 69 ms
10,624 KB
testcase_52 AC 69 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int min(long long int a, long long int b)
{
	if (a < b)
		return a;
	else
		return b;
}
long long int n, m;
long long int a[200005];
long long int ans[200005];
long long int cnt[200005];
long long int seg[800005], ss;
void update(long long int x, long long int d)
{
	cnt[x] += d;
	if (d > 0 && cnt[x] == 1)
		seg[x + ss - 1] = n;
	else if (d < 0 && cnt[x] == 0)
		seg[x + ss - 1] = x;
	x += ss - 1;
	while (x > 0)
	{
		x = (x - 1) / 2;
		seg[x] = min(seg[2 * x + 1], seg[2 * x + 2]);
	}
	return;
}

int main()
{
	scanf("%lld %lld", &n, &m);
	long long int i, j;
	for (i = 0; i < n; i++)
		scanf("%lld", &a[i]);
	for (i = 0; i <= n; i++)
		ans[i] = 0;
	for (i = 0; i <= n; i++)
		cnt[i] = 0;
	for (ss = 1; ss <= n; ss *= 2);
	for (i = ss - 1; i < 2 * ss - 1; i++)
		seg[i] = i - ss + 1;
	for (i = ss - 1; i >= 0; i--)
		seg[i] = min(seg[2 * i + 1], seg[2 * i + 2]);
	j = 0;
	for (i = 0; i < n; i++)
	{
		for (; j <= i; j++)
			update(a[j], 1);
		while (j < n && seg[0] < m)
		{
			update(a[j], 1);
			j++;
		}
		if (seg[0] >= m)
		{
			ans[j - i]++;
			ans[n - i + 1]--;
		}
		update(a[i], -1);
	}
	for (i = 0; i < n; i++)
		ans[i + 1] += ans[i];
	for (i = 1; i <= n; i++)
		printf("%lld\n", ans[i]);
	return 0;
}
0