結果

問題 No.2236 Lights Out On Simple Graph
ユーザー 👑 seekworserseekworser
提出日時 2023-03-02 20:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,235 ms / 4,000 ms
コード長 858 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 258,736 KB
最終ジャッジ日時 2024-09-17 16:01:06
合計ジャッジ時間 65,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 37 ms
52,604 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 2,130 ms
258,656 KB
testcase_04 AC 947 ms
206,700 KB
testcase_05 AC 37 ms
53,132 KB
testcase_06 AC 1,462 ms
258,736 KB
testcase_07 AC 1,626 ms
141,368 KB
testcase_08 AC 37 ms
53,340 KB
testcase_09 AC 38 ms
52,796 KB
testcase_10 AC 452 ms
124,696 KB
testcase_11 AC 236 ms
76,324 KB
testcase_12 AC 536 ms
124,848 KB
testcase_13 AC 99 ms
82,016 KB
testcase_14 AC 1,031 ms
206,312 KB
testcase_15 AC 85 ms
79,428 KB
testcase_16 AC 105 ms
81,800 KB
testcase_17 AC 277 ms
98,400 KB
testcase_18 AC 55 ms
66,564 KB
testcase_19 AC 173 ms
89,868 KB
testcase_20 AC 931 ms
206,472 KB
testcase_21 AC 170 ms
90,504 KB
testcase_22 AC 2,105 ms
258,556 KB
testcase_23 AC 2,020 ms
258,492 KB
testcase_24 AC 1,078 ms
206,708 KB
testcase_25 AC 287 ms
98,516 KB
testcase_26 AC 2,021 ms
258,736 KB
testcase_27 AC 916 ms
206,336 KB
testcase_28 AC 1,081 ms
206,392 KB
testcase_29 AC 168 ms
89,988 KB
testcase_30 AC 2,085 ms
258,652 KB
testcase_31 AC 2,065 ms
258,524 KB
testcase_32 AC 2,110 ms
258,436 KB
testcase_33 AC 2,060 ms
258,544 KB
testcase_34 AC 2,089 ms
258,736 KB
testcase_35 AC 2,008 ms
258,676 KB
testcase_36 AC 2,235 ms
258,620 KB
testcase_37 AC 2,051 ms
258,556 KB
testcase_38 AC 2,122 ms
124,988 KB
testcase_39 AC 1,847 ms
79,432 KB
testcase_40 AC 782 ms
137,320 KB
testcase_41 AC 163 ms
90,484 KB
testcase_42 AC 453 ms
100,440 KB
testcase_43 AC 102 ms
78,960 KB
testcase_44 AC 1,931 ms
214,956 KB
testcase_45 AC 1,858 ms
208,248 KB
testcase_46 AC 1,921 ms
221,688 KB
testcase_47 AC 1,692 ms
228,088 KB
testcase_48 AC 2,178 ms
258,592 KB
testcase_49 AC 1,715 ms
141,444 KB
testcase_50 AC 95 ms
76,248 KB
testcase_51 AC 361 ms
88,432 KB
testcase_52 AC 85 ms
76,648 KB
testcase_53 AC 39 ms
52,836 KB
testcase_54 AC 978 ms
124,764 KB
testcase_55 AC 1,724 ms
98,252 KB
testcase_56 AC 1,391 ms
90,076 KB
testcase_57 AC 1,612 ms
100,168 KB
testcase_58 AC 1,523 ms
88,220 KB
testcase_59 AC 1,511 ms
89,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = []
b = []
for _ in range(m):
    ai, bi = map(int,input().split())
    a.append(ai-1)
    b.append(bi-1)
cv = list(map(int,input().split()))
c = 0
for i in range(n):
    if cv[i]:
        c += (1 << i)
seen = set()
val = dict()
m1 = m // 2
m2 = m - m1
for bt in range((1 << m1)):
    l = 0
    for i in range(m1):
        if (bt >> i) & 1:
            l ^= (1 << a[i])
            l ^= (1 << b[i])
    if l in seen:
        val[l] = min(val[l], bin(bt).count("1"))
    else:
        val[l] = bin(bt).count("1")
        seen.add(l)
ans = 100000000
for bt in range(1 << m2):
    l = c
    for i in range(m2):
        if (bt >> i) & 1:
            l ^= (1 << a[m1+i])
            l ^= (1 << b[m1+i])
    if l in seen:
        ans = min(ans, val[l] + bin(bt).count("1"))
if ans == 100000000:
    print(-1)
else:
    print(ans)
0