結果

問題 No.2236 Lights Out On Simple Graph
ユーザー shobonvipshobonvip
提出日時 2023-03-04 01:29:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,444 ms / 4,000 ms
コード長 700 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 254,784 KB
最終ジャッジ日時 2024-09-18 00:52:19
合計ジャッジ時間 42,555 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,144 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 1,444 ms
254,228 KB
testcase_04 AC 1,022 ms
223,900 KB
testcase_05 AC 43 ms
53,248 KB
testcase_06 AC 1,208 ms
254,412 KB
testcase_07 AC 1,220 ms
175,300 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 270 ms
132,308 KB
testcase_11 AC 128 ms
76,376 KB
testcase_12 AC 384 ms
128,736 KB
testcase_13 AC 90 ms
82,048 KB
testcase_14 AC 905 ms
161,428 KB
testcase_15 AC 85 ms
78,336 KB
testcase_16 AC 108 ms
87,808 KB
testcase_17 AC 170 ms
98,592 KB
testcase_18 AC 68 ms
66,432 KB
testcase_19 AC 185 ms
98,560 KB
testcase_20 AC 558 ms
170,848 KB
testcase_21 AC 159 ms
98,560 KB
testcase_22 AC 1,424 ms
254,468 KB
testcase_23 AC 1,316 ms
254,592 KB
testcase_24 AC 906 ms
162,820 KB
testcase_25 AC 249 ms
123,780 KB
testcase_26 AC 1,339 ms
254,168 KB
testcase_27 AC 528 ms
171,096 KB
testcase_28 AC 981 ms
224,132 KB
testcase_29 AC 156 ms
98,688 KB
testcase_30 AC 1,349 ms
254,600 KB
testcase_31 AC 1,340 ms
254,612 KB
testcase_32 AC 1,336 ms
254,352 KB
testcase_33 AC 1,413 ms
254,356 KB
testcase_34 AC 1,338 ms
254,784 KB
testcase_35 AC 1,190 ms
218,688 KB
testcase_36 AC 870 ms
181,468 KB
testcase_37 AC 1,199 ms
254,144 KB
testcase_38 AC 895 ms
109,500 KB
testcase_39 AC 839 ms
77,952 KB
testcase_40 AC 419 ms
129,220 KB
testcase_41 AC 142 ms
91,144 KB
testcase_42 AC 392 ms
142,856 KB
testcase_43 AC 82 ms
75,264 KB
testcase_44 AC 1,097 ms
157,864 KB
testcase_45 AC 1,359 ms
223,764 KB
testcase_46 AC 1,138 ms
161,284 KB
testcase_47 AC 1,156 ms
221,788 KB
testcase_48 AC 1,145 ms
178,136 KB
testcase_49 AC 1,230 ms
175,048 KB
testcase_50 AC 74 ms
68,736 KB
testcase_51 AC 253 ms
107,300 KB
testcase_52 AC 69 ms
71,296 KB
testcase_53 AC 37 ms
54,400 KB
testcase_54 AC 756 ms
133,664 KB
testcase_55 AC 869 ms
96,976 KB
testcase_56 AC 865 ms
87,000 KB
testcase_57 AC 904 ms
101,312 KB
testcase_58 AC 882 ms
83,328 KB
testcase_59 AC 894 ms
83,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,m = map(int,input().split())
a = [0] * m
b = [0] * m
for i in range(m):
	a[i], b[i] = map(int,input().split())
	a[i] -= 1
	b[i] -= 1

c = list(map(int,input().split()))
q = 0
for i in range(n):
	q ^= c[i] << i

r = m - m//2
v = defaultdict(lambda: 10 ** 9)

for i in range(1 << r):
	cnt = 0
	h = 0
	for j in range(r):
		if (i >> j & 1):
			cnt += 1
			h ^= 1 << a[m // 2 + j]
			h ^= 1 << b[m // 2 + j]
	v[h] = min(v[h], cnt)

r2 = m//2
ans = 10 ** 9

for i in range(1 << r2):
	cnt = 0
	h = 0
	for j in range(r2):
		if (i >> j & 1):
			cnt += 1
			h ^= 1 << a[j]
			h ^= 1 << b[j]
	ans = min(ans, v[q ^ h] + cnt)

if ans >= 10 ** 7:
	print(-1)
else:
	print(ans)
0