結果

問題 No.1577 織姫と彦星2
ユーザー ygd.ygd.
提出日時 2021-06-30 00:12:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 95,224 KB
最終ジャッジ日時 2024-06-26 02:43:50
合計ジャッジ時間 10,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,496 KB
testcase_01 AC 45 ms
54,560 KB
testcase_02 AC 46 ms
53,788 KB
testcase_03 AC 44 ms
54,728 KB
testcase_04 AC 44 ms
53,928 KB
testcase_05 AC 71 ms
72,156 KB
testcase_06 AC 59 ms
66,076 KB
testcase_07 AC 224 ms
88,628 KB
testcase_08 AC 126 ms
80,612 KB
testcase_09 AC 269 ms
95,224 KB
testcase_10 AC 111 ms
80,320 KB
testcase_11 AC 78 ms
73,536 KB
testcase_12 AC 156 ms
84,612 KB
testcase_13 AC 93 ms
79,120 KB
testcase_14 AC 173 ms
86,600 KB
testcase_15 AC 115 ms
79,168 KB
testcase_16 AC 206 ms
88,404 KB
testcase_17 AC 142 ms
82,504 KB
testcase_18 AC 51 ms
62,244 KB
testcase_19 AC 190 ms
87,020 KB
testcase_20 AC 170 ms
85,316 KB
testcase_21 AC 210 ms
88,316 KB
testcase_22 AC 198 ms
88,216 KB
testcase_23 AC 124 ms
79,904 KB
testcase_24 AC 206 ms
93,452 KB
testcase_25 AC 116 ms
78,700 KB
testcase_26 AC 125 ms
79,976 KB
testcase_27 AC 164 ms
90,456 KB
testcase_28 AC 167 ms
85,776 KB
testcase_29 AC 127 ms
83,340 KB
testcase_30 AC 139 ms
83,460 KB
testcase_31 AC 198 ms
88,512 KB
testcase_32 AC 59 ms
67,124 KB
testcase_33 AC 56 ms
65,216 KB
testcase_34 AC 129 ms
81,964 KB
testcase_35 AC 198 ms
86,892 KB
testcase_36 AC 201 ms
88,352 KB
testcase_37 AC 260 ms
94,108 KB
testcase_38 AC 249 ms
93,404 KB
testcase_39 AC 129 ms
80,824 KB
testcase_40 AC 124 ms
81,260 KB
testcase_41 AC 187 ms
91,464 KB
testcase_42 AC 136 ms
85,560 KB
testcase_43 AC 146 ms
85,400 KB
testcase_44 AC 61 ms
68,160 KB
testcase_45 AC 102 ms
78,044 KB
testcase_46 AC 91 ms
78,456 KB
testcase_47 AC 148 ms
91,360 KB
testcase_48 AC 110 ms
81,156 KB
testcase_49 AC 140 ms
82,564 KB
testcase_50 AC 114 ms
79,456 KB
testcase_51 AC 60 ms
67,076 KB
testcase_52 AC 201 ms
93,572 KB
testcase_53 AC 211 ms
93,352 KB
testcase_54 AC 131 ms
83,232 KB
testcase_55 AC 205 ms
93,188 KB
testcase_56 AC 118 ms
78,996 KB
testcase_57 AC 98 ms
77,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def main():
    twos = [1]
    MAX = 35
    for i in range(MAX):
        twos.append(twos[-1]*2)
    twos = set(twos)
    #print(twos)

    N = int(input()); INF = float("inf")
    N += 2
    start,end = map(int,input().split())
    stones = [start] + list(map(int,input().split())) + [end]
    dic = {}
    for i in range(N):
        dic[stones[i]] = i
    G = [[] for _ in range(N)]
    used = set([])
    for stone in stones:
        base = 1
        for i in range(MAX):
            if (stone>>i)&1 == 1:
                adj = stone - base
            else:
                adj = stone + base
            base *= 2
            if adj not in dic: continue
            u = dic[stone]
            v = dic[adj]
            if v < u: #常にu < vの関係
                u,v = v,u
            if (u,v) in used: continue
            G[u].append(v)
            G[v].append(u)
            used.add((u,v))
    #print(G)
    D = [-1]*N
    Q = deque([])
    Q.append(0)
    D[0] = 0
    while Q:
        v = Q.popleft()
        for u in G[v]:
            if D[u] != -1: continue
            D[u] = D[v] + 1
            Q.append(u)
    #print(D,N)
    if D[N-1] == -1:
        print(-1)
    else:
        print(D[N-1] - 1)

if __name__ == '__main__':
    main()
0