結果

問題 No.2236 Lights Out On Simple Graph
ユーザー ああいいああいい
提出日時 2023-03-04 18:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 939 ms / 4,000 ms
コード長 805 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 169,688 KB
最終ジャッジ日時 2024-09-18 01:20:56
合計ジャッジ時間 29,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,152 KB
testcase_01 AC 36 ms
52,408 KB
testcase_02 AC 33 ms
53,008 KB
testcase_03 AC 931 ms
169,688 KB
testcase_04 AC 532 ms
136,320 KB
testcase_05 AC 39 ms
52,456 KB
testcase_06 AC 707 ms
169,524 KB
testcase_07 AC 720 ms
102,536 KB
testcase_08 AC 34 ms
51,948 KB
testcase_09 AC 38 ms
53,844 KB
testcase_10 AC 193 ms
113,820 KB
testcase_11 AC 104 ms
75,904 KB
testcase_12 AC 255 ms
113,960 KB
testcase_13 AC 65 ms
73,932 KB
testcase_14 AC 443 ms
136,700 KB
testcase_15 AC 59 ms
70,708 KB
testcase_16 AC 68 ms
74,944 KB
testcase_17 AC 125 ms
98,568 KB
testcase_18 AC 45 ms
63,044 KB
testcase_19 AC 104 ms
87,128 KB
testcase_20 AC 355 ms
136,360 KB
testcase_21 AC 106 ms
86,868 KB
testcase_22 AC 893 ms
169,276 KB
testcase_23 AC 882 ms
169,280 KB
testcase_24 AC 491 ms
136,372 KB
testcase_25 AC 158 ms
98,316 KB
testcase_26 AC 848 ms
169,432 KB
testcase_27 AC 354 ms
136,412 KB
testcase_28 AC 492 ms
136,516 KB
testcase_29 AC 104 ms
86,952 KB
testcase_30 AC 870 ms
169,336 KB
testcase_31 AC 892 ms
169,476 KB
testcase_32 AC 910 ms
169,404 KB
testcase_33 AC 889 ms
169,208 KB
testcase_34 AC 844 ms
169,568 KB
testcase_35 AC 822 ms
169,156 KB
testcase_36 AC 897 ms
169,564 KB
testcase_37 AC 930 ms
169,212 KB
testcase_38 AC 780 ms
113,796 KB
testcase_39 AC 710 ms
77,828 KB
testcase_40 AC 305 ms
106,092 KB
testcase_41 AC 103 ms
83,856 KB
testcase_42 AC 234 ms
93,472 KB
testcase_43 AC 65 ms
72,436 KB
testcase_44 AC 887 ms
123,036 KB
testcase_45 AC 890 ms
123,296 KB
testcase_46 AC 897 ms
127,092 KB
testcase_47 AC 795 ms
126,884 KB
testcase_48 AC 939 ms
169,332 KB
testcase_49 AC 830 ms
102,412 KB
testcase_50 AC 63 ms
66,808 KB
testcase_51 AC 172 ms
86,788 KB
testcase_52 AC 58 ms
68,412 KB
testcase_53 AC 35 ms
53,636 KB
testcase_54 AC 431 ms
113,716 KB
testcase_55 AC 793 ms
98,416 KB
testcase_56 AC 657 ms
83,820 KB
testcase_57 AC 719 ms
90,920 KB
testcase_58 AC 766 ms
86,776 KB
testcase_59 AC 745 ms
83,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
edge = []
for _ in range(M):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    edge.append((1 << a) | (1 << b))
c = list(map(int,input().split()))
C = 0
for i in range(N):
    if c[i] == 1:
        C |= 1 << i
import sys
D = M // 2
E = M - D
d = dict()
for bit in range(1 << D):
    count = 0
    tmp = 0
    for i in range(D):
        if bit >> i & 1:
            count += 1
            tmp ^= edge[i]
    if tmp in d:
        d[tmp] = min(d[tmp],count)
    else:
        d[tmp] = count
ans = 50
for bit in range(1 << E):
    count = 0
    tmp = 0
    for i in range(E):
        if bit >> i & 1:
            count += 1
            tmp ^= edge[D + i]
    if tmp ^ C in d:
        ans = min(ans,count + d[tmp ^ C])
if ans == 50:
    print(-1)
else:
    print(ans)
0