結果

問題 No.2236 Lights Out On Simple Graph
ユーザー titiatitia
提出日時 2023-03-05 01:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,200 ms / 4,000 ms
コード長 824 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 169,636 KB
最終ジャッジ日時 2024-09-18 01:28:10
合計ジャッジ時間 47,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,008 KB
testcase_01 AC 38 ms
52,476 KB
testcase_02 AC 47 ms
61,360 KB
testcase_03 AC 1,200 ms
169,308 KB
testcase_04 AC 686 ms
169,404 KB
testcase_05 AC 45 ms
61,608 KB
testcase_06 AC 803 ms
169,328 KB
testcase_07 AC 883 ms
102,688 KB
testcase_08 AC 38 ms
52,960 KB
testcase_09 AC 45 ms
61,668 KB
testcase_10 AC 751 ms
169,352 KB
testcase_11 AC 471 ms
76,080 KB
testcase_12 AC 782 ms
169,284 KB
testcase_13 AC 727 ms
169,368 KB
testcase_14 AC 876 ms
169,404 KB
testcase_15 AC 737 ms
169,512 KB
testcase_16 AC 773 ms
169,636 KB
testcase_17 AC 595 ms
136,484 KB
testcase_18 AC 634 ms
169,420 KB
testcase_19 AC 794 ms
169,520 KB
testcase_20 AC 811 ms
169,404 KB
testcase_21 AC 781 ms
169,360 KB
testcase_22 AC 1,086 ms
169,492 KB
testcase_23 AC 1,045 ms
169,400 KB
testcase_24 AC 907 ms
169,380 KB
testcase_25 AC 781 ms
169,412 KB
testcase_26 AC 1,042 ms
169,508 KB
testcase_27 AC 856 ms
169,412 KB
testcase_28 AC 909 ms
169,408 KB
testcase_29 AC 757 ms
169,288 KB
testcase_30 AC 1,094 ms
169,596 KB
testcase_31 AC 1,090 ms
169,444 KB
testcase_32 AC 1,112 ms
169,404 KB
testcase_33 AC 1,095 ms
169,396 KB
testcase_34 AC 1,063 ms
169,392 KB
testcase_35 AC 1,048 ms
169,500 KB
testcase_36 AC 1,098 ms
169,576 KB
testcase_37 AC 1,064 ms
169,456 KB
testcase_38 AC 968 ms
113,964 KB
testcase_39 AC 837 ms
77,824 KB
testcase_40 AC 739 ms
127,044 KB
testcase_41 AC 628 ms
102,444 KB
testcase_42 AC 690 ms
126,540 KB
testcase_43 AC 535 ms
91,716 KB
testcase_44 AC 1,128 ms
123,108 KB
testcase_45 AC 1,073 ms
123,052 KB
testcase_46 AC 1,099 ms
126,996 KB
testcase_47 AC 956 ms
126,780 KB
testcase_48 AC 1,153 ms
169,456 KB
testcase_49 AC 1,015 ms
102,556 KB
testcase_50 AC 455 ms
75,896 KB
testcase_51 AC 630 ms
102,376 KB
testcase_52 AC 505 ms
88,500 KB
testcase_53 AC 47 ms
60,800 KB
testcase_54 AC 831 ms
123,460 KB
testcase_55 AC 992 ms
98,388 KB
testcase_56 AC 730 ms
83,836 KB
testcase_57 AC 780 ms
91,076 KB
testcase_58 AC 896 ms
86,912 KB
testcase_59 AC 863 ms
83,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
E=[]
for i in range(M):
    a,b=map(int,input().split())
    a-=1
    b-=1
    E.append((1<<a)^(1<<b))
C=list(map(int,input().split()))
now=0
for i in range(N):
    if C[i]==1:
        now^=(1<<i)

C=now

D=dict()
for i in range(1<<(min(20,M))):
    now=0
    c=0
    for j in range(min(20,M)):
        if i & (1<<j) != 0:
            now^=E[j]
            c+=1

    if now in D:
        D[now]=min(D[now],c)
    else:
        D[now]=c
    
if M<=20:
    if C in D:
        print(D[C])
    else:
        print(-1)
    exit()

ANS=1<<60

for i in range(1<<min(M-20,20)):
    now=0
    c=0
    for j in range(min(20,M-20)):
        if i & (1<<j) != 0:
            now^=E[j+20]
            c+=1

    if now^C in D:
        ANS=min(ANS,D[now^C]+c)

if ANS==1<<60:
    print(-1)
else:
    print(ANS)
0