結果

問題 No.2236 Lights Out On Simple Graph
ユーザー vwxyzvwxyz
提出日時 2023-12-01 02:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,197 ms / 4,000 ms
コード長 745 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 273,964 KB
最終ジャッジ日時 2024-09-26 15:08:07
合計ジャッジ時間 31,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,908 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 2,903 ms
273,480 KB
testcase_04 AC 2,069 ms
256,072 KB
testcase_05 AC 39 ms
54,144 KB
testcase_06 AC 2,723 ms
273,708 KB
testcase_07 AC 2,740 ms
257,156 KB
testcase_08 AC 41 ms
53,888 KB
testcase_09 AC 39 ms
53,888 KB
testcase_10 AC 787 ms
144,304 KB
testcase_11 AC 346 ms
77,260 KB
testcase_12 AC 1,128 ms
159,920 KB
testcase_13 AC 186 ms
84,980 KB
testcase_14 AC 1,849 ms
249,116 KB
testcase_15 AC 175 ms
83,068 KB
testcase_16 AC 227 ms
89,356 KB
testcase_17 AC 477 ms
104,960 KB
testcase_18 AC 122 ms
77,868 KB
testcase_19 AC 352 ms
105,104 KB
testcase_20 AC 1,536 ms
248,856 KB
testcase_21 AC 369 ms
106,388 KB
testcase_22 AC 3,093 ms
273,784 KB
testcase_23 AC 2,848 ms
273,900 KB
testcase_24 AC 2,013 ms
249,496 KB
testcase_25 AC 671 ms
142,192 KB
testcase_26 AC 3,197 ms
273,964 KB
testcase_27 AC 1,592 ms
248,832 KB
testcase_28 AC 2,048 ms
257,448 KB
testcase_29 AC 358 ms
106,780 KB
testcase_30 AC 2,978 ms
273,388 KB
testcase_31 AC 2,895 ms
273,312 KB
testcase_32 AC 3,181 ms
273,148 KB
testcase_33 AC 2,827 ms
273,404 KB
testcase_34 AC 3,039 ms
273,396 KB
testcase_35 AC 2,718 ms
265,812 KB
testcase_36 AC 2,414 ms
258,460 KB
testcase_37 AC 2,835 ms
273,760 KB
testcase_38 AC 2,017 ms
119,784 KB
testcase_39 AC 2,023 ms
80,124 KB
testcase_40 AC 1,295 ms
147,072 KB
testcase_41 AC 360 ms
95,508 KB
testcase_42 AC 1,096 ms
181,572 KB
testcase_43 AC 206 ms
81,320 KB
testcase_44 AC 2,617 ms
219,988 KB
testcase_45 AC 3,148 ms
258,796 KB
testcase_46 AC 2,624 ms
252,968 KB
testcase_47 AC 2,775 ms
260,976 KB
testcase_48 AC 2,742 ms
265,816 KB
testcase_49 AC 2,567 ms
256,876 KB
testcase_50 AC 162 ms
77,624 KB
testcase_51 AC 803 ms
127,740 KB
testcase_52 AC 184 ms
78,980 KB
testcase_53 AC 40 ms
56,220 KB
testcase_54 AC 1,848 ms
160,872 KB
testcase_55 AC 2,518 ms
106,836 KB
testcase_56 AC 2,009 ms
98,012 KB
testcase_57 AC 2,028 ms
113,992 KB
testcase_58 AC 2,172 ms
89,444 KB
testcase_59 AC 2,166 ms
89,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

N,M=map(int,readline().split())
A,B=[],[]
for m in range(M):
    a,b=map(int,readline().split())
    a-=1;b-=1
    A.append(a)
    B.append(b)
inf=1<<60
m=M//2
dct=defaultdict(lambda:inf)
for bit in range(1<<m):
    c=0
    for i in range(m):
        if bit&1<<i:
            c^=1<<A[i]
            c^=1<<B[i]
    dct[c]=min(dct[c],sum(1 for i in range(m) if bit&1<<i))
C=sum(c<<i for i,c in enumerate(map(int,readline().split())))
ans=inf
for bit in range(1<<M-m):
    c=0
    for i in range(M-m):
        if bit&1<<i:
            c^=1<<A[m+i]
            c^=1<<B[m+i]
    ans=min(ans,dct[C^c]+sum(1 for i in range(M-m) if bit&1<<i))
if ans==inf:
    ans=-1
print(ans)
0