結果

問題 No.2669 Generalized Hitting Set
ユーザー 👑 ygussanyygussany
提出日時 2024-02-18 12:34:50
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1,051 ms / 4,000 ms
コード長 1,651 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 32,640 KB
実行使用メモリ 157,816 KB
最終ジャッジ日時 2024-09-29 00:22:16
合計ジャッジ時間 16,169 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
135,416 KB
testcase_01 AC 33 ms
135,548 KB
testcase_02 AC 32 ms
135,672 KB
testcase_03 AC 62 ms
141,428 KB
testcase_04 AC 58 ms
140,864 KB
testcase_05 AC 54 ms
140,804 KB
testcase_06 AC 74 ms
143,236 KB
testcase_07 AC 40 ms
138,620 KB
testcase_08 AC 43 ms
138,396 KB
testcase_09 AC 59 ms
140,876 KB
testcase_10 AC 49 ms
138,660 KB
testcase_11 AC 40 ms
138,312 KB
testcase_12 AC 65 ms
140,884 KB
testcase_13 AC 952 ms
150,404 KB
testcase_14 AC 126 ms
137,472 KB
testcase_15 AC 33 ms
135,424 KB
testcase_16 AC 55 ms
138,488 KB
testcase_17 AC 128 ms
140,532 KB
testcase_18 AC 33 ms
136,056 KB
testcase_19 AC 43 ms
135,800 KB
testcase_20 AC 34 ms
136,056 KB
testcase_21 AC 56 ms
137,336 KB
testcase_22 AC 38 ms
135,548 KB
testcase_23 AC 112 ms
143,324 KB
testcase_24 AC 80 ms
141,044 KB
testcase_25 AC 119 ms
145,524 KB
testcase_26 AC 961 ms
152,732 KB
testcase_27 AC 71 ms
139,252 KB
testcase_28 AC 1,048 ms
157,812 KB
testcase_29 AC 1,017 ms
157,812 KB
testcase_30 AC 1,051 ms
157,736 KB
testcase_31 AC 1,042 ms
157,796 KB
testcase_32 AC 1,032 ms
157,816 KB
testcase_33 AC 102 ms
143,480 KB
testcase_34 AC 91 ms
143,316 KB
testcase_35 AC 297 ms
147,324 KB
testcase_36 AC 33 ms
135,548 KB
testcase_37 AC 78 ms
138,108 KB
testcase_38 AC 35 ms
137,204 KB
testcase_39 AC 1,031 ms
157,812 KB
testcase_40 AC 1,038 ms
157,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

const int bit[25] = {1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216};
int comb[25][25];

void chmin(int *a, int b)
{
	if (*a > b) *a = b;
}

int main()
{
	int i, n, m, k;
	char S[300001][25];
	scanf("%d %d %d", &n, &m, &k);
	for (i = 1; i <= m; i++) scanf("%s", S[i]);
	
	char l[16777216];
	int j, x, num[16777216] = {};
	for (i = 1, comb[0][0] = 1; i <= n; i++) for (j = 1, comb[i][0] = 1, comb[i][i] = 1; j < i; j++) comb[i][j] = comb[i-1][j-1] + comb[i-1][j];
	for (x = 1, j = 1, l[0] = 0; x < bit[n]; x++, j++) {
		for (i = 0; (x & bit[i]) == 0; i++) j--;
		l[x] = j;
	}
	for (i = 1; i <= m; i++) {
		for (j = 0, x = 0; j < n; j++) if (S[i][j] != '0') x |= bit[j];
		num[x]++;
	}
	for (i = 0; i < n; i++) {
		for (x = 0; x < bit[n]; x++) {
			if ((x & bit[i]) == 0) continue;
			num[x ^ bit[i]] += num[x];
		}
	}
	// for (x = 0; x < bit[n]; x++) printf("%d %d\n", x, num[x]);

	int sum[16777216] = {};
	for (x = 0; x < bit[n]; x++) {
		if (l[x] >= k) {
			if ((l[x] - k) % 2 == 0) sum[x] = num[x] * comb[l[x]-1][k-1];
			else sum[x] = -num[x] * comb[l[x]-1][k-1];
		}
	}
	for (i = 0; i < n; i++) {
		for (x = 0; x < bit[n]; x++) {
			if ((x & bit[i]) != 0) continue;
			sum[x ^ bit[i]] += sum[x];
		}
	}
	// for (x = 0; x < bit[n]; x++) printf("%d %d\n", x, sum[x]);
	
	int ans[300001];
	for (i = 1; i <= m; i++) ans[i] = n;
	for (x = 0; x < bit[n]; x++) chmin(&(ans[sum[x]]), l[x]);
	for (i = m - 1; i >= 1; i--) chmin(&(ans[i]), ans[i+1]);
	for (i = 1; i <= m; i++) printf("%d\n", ans[i]);
	fflush(stdout);
	return 0;
}
0