結果

問題 No.2236 Lights Out On Simple Graph
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-03-03 23:19:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,287 ms / 4,000 ms
コード長 886 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 176,412 KB
最終ジャッジ日時 2024-09-18 00:27:38
合計ジャッジ時間 38,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,552 KB
testcase_01 AC 34 ms
52,464 KB
testcase_02 AC 33 ms
52,344 KB
testcase_03 AC 1,270 ms
176,312 KB
testcase_04 AC 718 ms
128,716 KB
testcase_05 AC 34 ms
52,488 KB
testcase_06 AC 975 ms
176,184 KB
testcase_07 AC 1,014 ms
109,612 KB
testcase_08 AC 39 ms
54,312 KB
testcase_09 AC 37 ms
53,148 KB
testcase_10 AC 252 ms
118,884 KB
testcase_11 AC 123 ms
73,716 KB
testcase_12 AC 342 ms
118,772 KB
testcase_13 AC 73 ms
72,944 KB
testcase_14 AC 581 ms
128,700 KB
testcase_15 AC 63 ms
70,612 KB
testcase_16 AC 82 ms
75,616 KB
testcase_17 AC 151 ms
98,240 KB
testcase_18 AC 49 ms
63,828 KB
testcase_19 AC 127 ms
87,024 KB
testcase_20 AC 439 ms
128,544 KB
testcase_21 AC 130 ms
87,116 KB
testcase_22 AC 1,158 ms
176,412 KB
testcase_23 AC 1,121 ms
176,064 KB
testcase_24 AC 600 ms
128,504 KB
testcase_25 AC 189 ms
98,516 KB
testcase_26 AC 1,079 ms
176,188 KB
testcase_27 AC 449 ms
128,496 KB
testcase_28 AC 645 ms
128,852 KB
testcase_29 AC 129 ms
86,940 KB
testcase_30 AC 1,167 ms
176,400 KB
testcase_31 AC 1,186 ms
176,092 KB
testcase_32 AC 1,149 ms
176,028 KB
testcase_33 AC 1,145 ms
176,040 KB
testcase_34 AC 1,128 ms
175,980 KB
testcase_35 AC 1,142 ms
175,980 KB
testcase_36 AC 1,209 ms
176,120 KB
testcase_37 AC 1,096 ms
176,232 KB
testcase_38 AC 1,057 ms
118,420 KB
testcase_39 AC 991 ms
77,584 KB
testcase_40 AC 419 ms
102,188 KB
testcase_41 AC 117 ms
84,256 KB
testcase_42 AC 301 ms
98,380 KB
testcase_43 AC 75 ms
71,764 KB
testcase_44 AC 1,193 ms
131,208 KB
testcase_45 AC 1,194 ms
133,320 KB
testcase_46 AC 1,192 ms
130,996 KB
testcase_47 AC 1,089 ms
132,460 KB
testcase_48 AC 1,287 ms
176,160 KB
testcase_49 AC 1,127 ms
109,784 KB
testcase_50 AC 63 ms
67,180 KB
testcase_51 AC 215 ms
86,792 KB
testcase_52 AC 67 ms
67,796 KB
testcase_53 AC 36 ms
53,200 KB
testcase_54 AC 612 ms
118,708 KB
testcase_55 AC 1,118 ms
98,056 KB
testcase_56 AC 869 ms
83,484 KB
testcase_57 AC 916 ms
89,772 KB
testcase_58 AC 1,022 ms
86,600 KB
testcase_59 AC 1,021 ms
83,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
AB = [[int(x)-1 for x in input().split()] for i in range(m)]
C = list(map(int,input().split()))

ans = m+1

dic = {}
l,r = AB[:m//2],AB[m//2:]
# print(l)
# print(r)
base = 0
for c in C[::-1]:
    base <<= 1
    base |= c
# print(base)
ll = len(l)
for b in range(1<<ll):

    num = base
    count = 0
    for i,(x,y) in enumerate(l):
        if b >> i & 1:
            count += 1
            num ^= 1<<x
            num ^= 1<<y
    # print(num,count)
    if num in dic:
        dic[num] = min(dic[num],count)
    else:
        dic[num] = count

lr = len(r)
for b in range(1<<lr):
    
    num = 0
    count = 0
    for i,(x,y) in enumerate(r):
        if b >> i & 1:
            count += 1
            num ^= 1<<x
            num ^= 1<<y
    # print(num,count)
    if num in dic:
        ans = min(ans,count+dic[num])
if ans == m+1:
    ans = -1
print(ans)
0