結果

問題 No.1576 織姫と彦星
ユーザー convexineqconvexineq
提出日時 2021-07-03 04:39:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 63,180 KB
最終ジャッジ日時 2024-06-29 22:49:32
合計ジャッジ時間 4,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,744 KB
testcase_01 AC 35 ms
52,256 KB
testcase_02 AC 33 ms
52,300 KB
testcase_03 AC 32 ms
53,172 KB
testcase_04 AC 32 ms
52,440 KB
testcase_05 AC 33 ms
53,380 KB
testcase_06 AC 38 ms
58,712 KB
testcase_07 AC 42 ms
61,212 KB
testcase_08 AC 39 ms
61,304 KB
testcase_09 AC 37 ms
58,968 KB
testcase_10 AC 47 ms
62,076 KB
testcase_11 AC 39 ms
58,496 KB
testcase_12 AC 49 ms
61,108 KB
testcase_13 AC 47 ms
61,592 KB
testcase_14 AC 47 ms
61,736 KB
testcase_15 AC 43 ms
60,860 KB
testcase_16 AC 41 ms
60,948 KB
testcase_17 AC 44 ms
61,216 KB
testcase_18 AC 39 ms
59,988 KB
testcase_19 AC 41 ms
61,232 KB
testcase_20 AC 41 ms
60,088 KB
testcase_21 AC 43 ms
60,880 KB
testcase_22 AC 42 ms
59,960 KB
testcase_23 AC 38 ms
60,368 KB
testcase_24 AC 38 ms
60,252 KB
testcase_25 AC 42 ms
61,260 KB
testcase_26 AC 41 ms
61,112 KB
testcase_27 AC 39 ms
58,216 KB
testcase_28 AC 41 ms
61,044 KB
testcase_29 AC 40 ms
60,492 KB
testcase_30 AC 35 ms
59,060 KB
testcase_31 AC 39 ms
61,988 KB
testcase_32 AC 42 ms
60,868 KB
testcase_33 AC 46 ms
63,180 KB
testcase_34 AC 35 ms
59,060 KB
testcase_35 AC 41 ms
60,976 KB
testcase_36 AC 37 ms
60,220 KB
testcase_37 AC 44 ms
62,268 KB
testcase_38 AC 41 ms
61,016 KB
testcase_39 AC 40 ms
61,636 KB
testcase_40 AC 41 ms
61,552 KB
testcase_41 AC 41 ms
61,068 KB
testcase_42 AC 35 ms
58,788 KB
testcase_43 AC 38 ms
60,224 KB
testcase_44 AC 45 ms
62,952 KB
testcase_45 AC 43 ms
61,460 KB
testcase_46 AC 45 ms
61,448 KB
testcase_47 AC 38 ms
60,060 KB
testcase_48 AC 42 ms
62,176 KB
testcase_49 AC 40 ms
60,972 KB
testcase_50 AC 36 ms
60,408 KB
testcase_51 AC 36 ms
59,468 KB
testcase_52 AC 40 ms
60,388 KB
testcase_53 AC 42 ms
61,420 KB
testcase_54 AC 41 ms
60,864 KB
testcase_55 AC 41 ms
60,984 KB
testcase_56 AC 42 ms
61,284 KB
testcase_57 AC 36 ms
58,524 KB
testcase_58 AC 38 ms
60,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,S,G,*a, = map(int,open(0).read().split())
n += 2
a += [S,G]
g = [[] for _ in range(n)]
for i in range(n):
    for j in range(n):
        v = a[i]^a[j]
        if v and v&(v-1)==0:
            g[i].append(j)

d = [-1]*n
q = [n-2]
d[n-2] = 0
for v in q:
    for i in g[v]:
        if d[i] == -1:
            d[i] = d[v] + 1
            q.append(i)
print(max(-1,d[-1]-1))
0