結果

問題 No.2236 Lights Out On Simple Graph
ユーザー KazunKazun
提出日時 2023-03-03 22:02:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,053 ms / 4,000 ms
コード長 845 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 284,132 KB
最終ジャッジ日時 2024-09-17 22:59:52
合計ジャッジ時間 55,861 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,176 KB
testcase_01 AC 38 ms
52,928 KB
testcase_02 AC 39 ms
52,560 KB
testcase_03 AC 2,002 ms
282,124 KB
testcase_04 AC 1,047 ms
268,956 KB
testcase_05 AC 36 ms
53,148 KB
testcase_06 AC 1,814 ms
282,208 KB
testcase_07 AC 1,628 ms
283,560 KB
testcase_08 AC 33 ms
52,944 KB
testcase_09 AC 33 ms
52,280 KB
testcase_10 AC 315 ms
111,616 KB
testcase_11 AC 132 ms
76,024 KB
testcase_12 AC 442 ms
128,864 KB
testcase_13 AC 78 ms
81,472 KB
testcase_14 AC 937 ms
206,280 KB
testcase_15 AC 71 ms
80,436 KB
testcase_16 AC 93 ms
87,472 KB
testcase_17 AC 198 ms
96,300 KB
testcase_18 AC 49 ms
65,592 KB
testcase_19 AC 183 ms
94,424 KB
testcase_20 AC 672 ms
195,320 KB
testcase_21 AC 177 ms
94,600 KB
testcase_22 AC 1,960 ms
281,944 KB
testcase_23 AC 2,053 ms
282,280 KB
testcase_24 AC 977 ms
201,332 KB
testcase_25 AC 264 ms
115,680 KB
testcase_26 AC 1,974 ms
282,372 KB
testcase_27 AC 707 ms
195,352 KB
testcase_28 AC 1,121 ms
268,620 KB
testcase_29 AC 177 ms
94,476 KB
testcase_30 AC 1,959 ms
282,124 KB
testcase_31 AC 1,975 ms
282,604 KB
testcase_32 AC 2,053 ms
282,168 KB
testcase_33 AC 1,969 ms
282,192 KB
testcase_34 AC 2,013 ms
282,192 KB
testcase_35 AC 1,715 ms
275,828 KB
testcase_36 AC 1,400 ms
246,812 KB
testcase_37 AC 1,971 ms
282,284 KB
testcase_38 AC 1,135 ms
112,432 KB
testcase_39 AC 1,023 ms
78,116 KB
testcase_40 AC 519 ms
115,772 KB
testcase_41 AC 171 ms
88,508 KB
testcase_42 AC 456 ms
143,664 KB
testcase_43 AC 76 ms
78,272 KB
testcase_44 AC 1,520 ms
183,656 KB
testcase_45 AC 1,720 ms
284,132 KB
testcase_46 AC 1,560 ms
230,236 KB
testcase_47 AC 1,734 ms
275,424 KB
testcase_48 AC 1,755 ms
273,448 KB
testcase_49 AC 1,634 ms
283,424 KB
testcase_50 AC 63 ms
75,928 KB
testcase_51 AC 298 ms
103,308 KB
testcase_52 AC 67 ms
76,660 KB
testcase_53 AC 34 ms
53,080 KB
testcase_54 AC 770 ms
129,264 KB
testcase_55 AC 1,131 ms
98,872 KB
testcase_56 AC 1,081 ms
91,172 KB
testcase_57 AC 1,108 ms
105,080 KB
testcase_58 AC 1,110 ms
84,192 KB
testcase_59 AC 1,059 ms
84,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M=map(int,input().split())
    a=[0]*M; b=[0]*M

    for j in range(M):
        a[j],b[j]=map(int,input().split())
        a[j]-=1; b[j]-=1

    c=list(map(int,input().split()))

    def bit(x,k):
        return (x>>k)&1

    inf=10**9
    def calc(F):
        X={}
        M=len(F)

        for S in range(1<<M):
            p=0
            cnt=0
            for k in range(M):
                if bit(S,k):
                    p^=(1<<a[F[k]])^(1<<b[F[k]])
                    cnt+=1
            if cnt<X.get(p,inf):
                X[p]=cnt
        return X

    P=calc(list(range(M//2)))
    Q=calc(list(range(M//2,M)))

    target=sum([1<<v for v in range(N) if c[v]==1])
    ans=min(P[p]+Q.get(p^target,inf) for p in P)
    return ans if ans<inf else -1

#==================================================
print(solve())
0