結果

問題 No.2236 Lights Out On Simple Graph
ユーザー mkawa2mkawa2
提出日時 2023-03-04 12:03:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,364 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 270,688 KB
最終ジャッジ日時 2024-09-18 01:03:39
合計ジャッジ時間 26,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 935 ms
263,796 KB
testcase_04 AC 632 ms
262,008 KB
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 735 ms
264,048 KB
testcase_07 AC 665 ms
268,112 KB
testcase_08 AC 42 ms
54,664 KB
testcase_09 WA -
testcase_10 AC 207 ms
141,960 KB
testcase_11 AC 86 ms
76,456 KB
testcase_12 AC 284 ms
154,632 KB
testcase_13 AC 73 ms
77,944 KB
testcase_14 AC 519 ms
195,224 KB
testcase_15 AC 70 ms
75,048 KB
testcase_16 AC 84 ms
85,800 KB
testcase_17 AC 131 ms
109,200 KB
testcase_18 WA -
testcase_19 AC 111 ms
105,600 KB
testcase_20 AC 413 ms
186,852 KB
testcase_21 AC 115 ms
105,008 KB
testcase_22 AC 861 ms
263,804 KB
testcase_23 AC 886 ms
263,700 KB
testcase_24 AC 553 ms
195,440 KB
testcase_25 AC 179 ms
139,452 KB
testcase_26 AC 864 ms
263,712 KB
testcase_27 AC 416 ms
187,232 KB
testcase_28 AC 644 ms
261,868 KB
testcase_29 AC 114 ms
104,740 KB
testcase_30 AC 867 ms
263,672 KB
testcase_31 AC 872 ms
263,580 KB
testcase_32 AC 913 ms
263,856 KB
testcase_33 AC 868 ms
263,828 KB
testcase_34 AC 879 ms
263,872 KB
testcase_35 AC 761 ms
263,696 KB
testcase_36 AC 497 ms
225,772 KB
testcase_37 AC 887 ms
263,548 KB
testcase_38 AC 309 ms
152,660 KB
testcase_39 WA -
testcase_40 AC 298 ms
140,636 KB
testcase_41 AC 105 ms
95,748 KB
testcase_42 AC 294 ms
149,680 KB
testcase_43 AC 85 ms
78,560 KB
testcase_44 AC 556 ms
176,064 KB
testcase_45 AC 800 ms
264,528 KB
testcase_46 AC 623 ms
218,140 KB
testcase_47 AC 730 ms
270,688 KB
testcase_48 AC 693 ms
225,952 KB
testcase_49 AC 661 ms
268,344 KB
testcase_50 WA -
testcase_51 AC 199 ms
138,864 KB
testcase_52 AC 75 ms
73,532 KB
testcase_53 AC 43 ms
54,272 KB
testcase_54 AC 414 ms
145,920 KB
testcase_55 AC 325 ms
131,968 KB
testcase_56 AC 281 ms
131,676 KB
testcase_57 AC 314 ms
131,840 KB
testcase_58 WA -
testcase_59 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

from collections import defaultdict

def mim(ab):
    res = defaultdict(lambda: inf)
    n = len(ab)
    pc = [0]*(1 << n)
    dp = [0]*(1 << n)
    for s in range(1, 1 << len(ab)):
        i = s.bit_length()-1
        pc[s] = pc[s ^ 1 << i]+1
        dp[s] = dp[s ^ 1 << i]
        a, b = ab[i]
        dp[s] ^= 1 << a
        dp[s] ^= 1 << b
        res[dp[s]] = min(res[dp[s]], pc[s])
    return res

n, m = LI()
ab = LLI1(m)
c = sum(a << i for i, a in enumerate(LI()))
ll = mim(ab[:m//2])
rr = mim(ab[m//2:])

ans = inf
for l in ll:
    r = c ^ l
    if r in rr:
        ans = min(ans, ll[l]+rr[r])

if ans == inf: ans = -1
print(ans)
0