結果

問題 No.2236 Lights Out On Simple Graph
ユーザー flygonflygon
提出日時 2023-03-04 18:35:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,833 ms / 4,000 ms
コード長 1,072 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 362,684 KB
最終ジャッジ日時 2024-09-18 01:21:59
合計ジャッジ時間 49,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,724 KB
testcase_01 AC 39 ms
54,892 KB
testcase_02 AC 41 ms
55,672 KB
testcase_03 AC 1,765 ms
362,584 KB
testcase_04 AC 1,208 ms
299,912 KB
testcase_05 AC 39 ms
55,452 KB
testcase_06 AC 1,535 ms
362,684 KB
testcase_07 AC 1,412 ms
272,308 KB
testcase_08 AC 41 ms
55,612 KB
testcase_09 AC 38 ms
55,600 KB
testcase_10 AC 344 ms
154,856 KB
testcase_11 AC 132 ms
76,952 KB
testcase_12 AC 498 ms
167,608 KB
testcase_13 AC 99 ms
93,776 KB
testcase_14 AC 965 ms
218,488 KB
testcase_15 AC 91 ms
88,576 KB
testcase_16 AC 112 ms
93,672 KB
testcase_17 AC 199 ms
119,424 KB
testcase_18 AC 54 ms
69,376 KB
testcase_19 AC 169 ms
123,008 KB
testcase_20 AC 706 ms
225,436 KB
testcase_21 AC 172 ms
123,124 KB
testcase_22 AC 1,707 ms
362,340 KB
testcase_23 AC 1,679 ms
362,212 KB
testcase_24 AC 918 ms
216,172 KB
testcase_25 AC 284 ms
164,876 KB
testcase_26 AC 1,623 ms
362,008 KB
testcase_27 AC 727 ms
225,384 KB
testcase_28 AC 1,133 ms
300,160 KB
testcase_29 AC 178 ms
123,020 KB
testcase_30 AC 1,672 ms
362,132 KB
testcase_31 AC 1,702 ms
362,116 KB
testcase_32 AC 1,753 ms
361,944 KB
testcase_33 AC 1,708 ms
362,084 KB
testcase_34 AC 1,833 ms
362,320 KB
testcase_35 AC 1,420 ms
289,272 KB
testcase_36 AC 1,100 ms
258,232 KB
testcase_37 AC 1,626 ms
362,152 KB
testcase_38 AC 908 ms
125,044 KB
testcase_39 AC 772 ms
80,268 KB
testcase_40 AC 529 ms
143,456 KB
testcase_41 AC 156 ms
102,336 KB
testcase_42 AC 488 ms
217,360 KB
testcase_43 AC 93 ms
80,876 KB
testcase_44 AC 1,187 ms
190,320 KB
testcase_45 AC 1,611 ms
286,344 KB
testcase_46 AC 1,319 ms
225,032 KB
testcase_47 AC 1,468 ms
281,440 KB
testcase_48 AC 1,494 ms
258,548 KB
testcase_49 AC 1,401 ms
272,528 KB
testcase_50 AC 73 ms
72,244 KB
testcase_51 AC 318 ms
147,848 KB
testcase_52 AC 80 ms
77,416 KB
testcase_53 AC 39 ms
55,492 KB
testcase_54 AC 766 ms
150,676 KB
testcase_55 AC 886 ms
119,552 KB
testcase_56 AC 840 ms
106,360 KB
testcase_57 AC 910 ms
118,124 KB
testcase_58 AC 849 ms
89,388 KB
testcase_59 AC 817 ms
91,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())

graph = [[] for i in range(n+1)]
e = []
for i in range(m):
  a,b = map(int,input().split())
  graph[a].append(b)
  graph[b].append(a)
  e.append([a-1, b-1])

c = list(map(int,input().split()))
ini = 0
for i in range(n):
  if c[i]:
    ini |= (1<<i)

m1 = m//2
m2 = m - m1
e1,e2 = e[:m1], e[m1:]
d1, d2 = defaultdict(lambda : 10**15),defaultdict(lambda : 10**15)

s1,s2 = set(),set()
for i in range(2):
  for bit in range(1<<m1):
    now = 0
    cnt = 0
    for i in range(m1):
      if (bit >> i) & 1:
        now ^= 1<<e1[i][0]
        now ^= 1<<e1[i][1]
        cnt += 1
    s1.add(now)
    d1[now] = min(d1[now], cnt)
  m1,m2 = m2,m1
  e1,e2 = e2,e1
  s1,s2 = s2,s1
  d1,d2 = d2,d1

ans = 10**15
for i in s1:
  if (ini ^ i) in s2:
    ans = min(ans, d1[i] + d2[ini^i])

print(ans) if ans < 10**15 else print(-1)

0