結果

問題 No.1560 majority x majority
ユーザー rtyurtyu
提出日時 2021-07-13 11:44:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 69,504 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-07-02 12:50:29
合計ジャッジ時間 1,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
23,424 KB
testcase_01 AC 36 ms
23,424 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 34 ms
23,424 KB
testcase_04 AC 32 ms
23,424 KB
testcase_05 AC 32 ms
23,424 KB
testcase_06 AC 17 ms
21,632 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 19 ms
13,440 KB
testcase_09 AC 18 ms
23,168 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 5 ms
5,888 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 17 ms
22,016 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 19 ms
13,568 KB
testcase_18 AC 6 ms
6,016 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 10 ms
8,448 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 10 ms
8,320 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int d[5009], c[5009];
bool r[5009][5009];

int main()
{ 
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n, m; cin >> n >> m;
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			int a; cin >> a;
			r[(1 << j)][i] = a;
		}
		r[0][i] = 1;
	}
	d[0] = 1; c[0] = n;
	for (int i = 1; i < (1 << m); i++) {
		int p0 = i & (-i), p1 = i - p0;
		for (int j = 0; j < n; j++) {
			r[i][j] = r[p0][j] & r[p1][j];
			c[i] += r[i][j];
		}
		for (int j = 0; j < m; j++)
			if ((i & (1 << j)) && c[i] >= (c[i - (1 << j)] + 1) / 2)
				d[i] += d[i - (1 << j)];
	}
	cout << d[(1 << m) - 1] << '\n';
	return 0;
}
0