結果
問題 | No.2236 Lights Out On Simple Graph |
ユーザー | minimum |
提出日時 | 2023-03-03 22:04:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,566 ms / 4,000 ms |
コード長 | 1,190 bytes |
コンパイル時間 | 480 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 262,284 KB |
最終ジャッジ日時 | 2024-09-17 23:07:53 |
合計ジャッジ時間 | 48,689 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 57 |
ソースコード
N, M = map(int, input().split()) edge0, edge1 = [], [] for i in range(M): a, b = map(int, input().split()) if i % 2 == 0: edge0.append((a - 1, b - 1)) else: edge1.append((a - 1, b - 1)) C = list(map(int, input().split())) C.reverse() goal = 0 for i in range(N): goal <<= 1 goal |= C[i] dic0 = dict() for bit in range(1 << len(edge0)): state = 0 cnt = 0 for i in range(len(edge0)): if (bit >> i) & 1: cnt += 1 state ^= (1 << edge0[i][0]) state ^= (1 << edge0[i][1]) if state not in dic0: dic0[state] = M if cnt < dic0[state]: dic0[state] = cnt dic1 = dict() for bit in range(1 << len(edge1)): state = 0 cnt = 0 for i in range(len(edge1)): if (bit >> i) & 1: cnt += 1 state ^= (1 << edge1[i][0]) state ^= (1 << edge1[i][1]) if state not in dic1: dic1[state] = M if cnt < dic1[state]: dic1[state] = cnt ans = M + 1 for i in dic0: if goal ^ i in dic1: if ans > dic1[goal ^ i] + dic0[i]: ans = dic1[goal ^ i] + dic0[i] if ans == M + 1: print(-1) else: print(ans)