結果

問題 No.2255 Determinant Sum
ユーザー shobonvipshobonvip
提出日時 2023-03-13 17:38:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-09-18 16:36:34
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,252 KB
testcase_01 AC 33 ms
52,756 KB
testcase_02 AC 50 ms
63,792 KB
testcase_03 AC 52 ms
63,892 KB
testcase_04 AC 58 ms
65,268 KB
testcase_05 AC 39 ms
54,396 KB
testcase_06 AC 92 ms
76,520 KB
testcase_07 AC 104 ms
76,492 KB
testcase_08 AC 99 ms
76,484 KB
testcase_09 AC 99 ms
77,016 KB
testcase_10 AC 84 ms
76,876 KB
testcase_11 AC 72 ms
76,624 KB
testcase_12 AC 83 ms
76,236 KB
testcase_13 AC 73 ms
76,432 KB
testcase_14 AC 97 ms
76,764 KB
testcase_15 AC 88 ms
76,956 KB
testcase_16 AC 77 ms
76,152 KB
testcase_17 AC 88 ms
76,484 KB
testcase_18 AC 77 ms
76,488 KB
testcase_19 AC 74 ms
76,580 KB
testcase_20 AC 80 ms
76,796 KB
testcase_21 AC 104 ms
76,820 KB
testcase_22 AC 77 ms
76,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, p, a):
	if p > 2:
		return 0
	
	x = [0] * n
	y = [0] * n
	for i in range(n):
		for j in range(n):
			if a[i][j] == -1:
				x[i] += 1
				y[j] += 1
	
	mode = 1
	for i in range(n):
		if x[i] > 1 or y[i] > 1:
			mode = 0
			break

	if mode == 0:
		return 0

	bx = []
	by = []
	for i in range(n):
		if x[i] == 0:
			bx.append(i)
		if y[i] == 0:
			by.append(i)

	m = len(bx)
	b = [0] * m
	for i in range(m):
		for j in range(m):
			b[i] ^= a[bx[i]][by[j]] << j
	
	base = []
	for v in b:
		for e in base:
			v = min(v, v^e)
		if v > 0: base.append(v)
	
	if len(base) == m:
		return 1
	else:
		return 0
		
T = int(input())
for i in range(T):
    n, p = map(int,input().split())
    a = [list(map(int,input().split())) for i in range(n)]
    print(solve(n, p, a))
0