結果

問題 No.1577 織姫と彦星2
ユーザー kitatike55kitatike55
提出日時 2021-07-21 16:48:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,952 KB
最終ジャッジ日時 2024-07-17 14:06:16
合計ジャッジ時間 10,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 38 ms
12,928 KB
testcase_06 AC 33 ms
11,392 KB
testcase_07 AC 76 ms
16,624 KB
testcase_08 AC 154 ms
13,940 KB
testcase_09 AC 285 ms
19,384 KB
testcase_10 AC 73 ms
13,184 KB
testcase_11 AC 47 ms
11,136 KB
testcase_12 AC 160 ms
16,128 KB
testcase_13 AC 49 ms
13,048 KB
testcase_14 AC 227 ms
17,168 KB
testcase_15 AC 130 ms
13,312 KB
testcase_16 AC 274 ms
18,896 KB
testcase_17 AC 160 ms
15,560 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 315 ms
19,284 KB
testcase_20 AC 290 ms
18,492 KB
testcase_21 AC 370 ms
19,240 KB
testcase_22 AC 266 ms
19,836 KB
testcase_23 AC 151 ms
13,432 KB
testcase_24 AC 236 ms
17,532 KB
testcase_25 AC 89 ms
13,184 KB
testcase_26 AC 156 ms
13,440 KB
testcase_27 AC 87 ms
16,904 KB
testcase_28 AC 212 ms
17,088 KB
testcase_29 AC 88 ms
15,872 KB
testcase_30 AC 152 ms
16,052 KB
testcase_31 AC 260 ms
18,896 KB
testcase_32 AC 33 ms
11,008 KB
testcase_33 AC 35 ms
10,752 KB
testcase_34 AC 117 ms
15,504 KB
testcase_35 AC 266 ms
19,044 KB
testcase_36 AC 305 ms
19,252 KB
testcase_37 AC 501 ms
19,472 KB
testcase_38 AC 208 ms
17,564 KB
testcase_39 AC 124 ms
13,824 KB
testcase_40 AC 135 ms
13,776 KB
testcase_41 AC 108 ms
17,396 KB
testcase_42 AC 82 ms
16,620 KB
testcase_43 AC 97 ms
16,692 KB
testcase_44 AC 36 ms
11,136 KB
testcase_45 AC 84 ms
12,796 KB
testcase_46 AC 53 ms
12,672 KB
testcase_47 AC 73 ms
17,196 KB
testcase_48 AC 63 ms
13,440 KB
testcase_49 AC 127 ms
15,784 KB
testcase_50 AC 65 ms
12,928 KB
testcase_51 AC 35 ms
11,392 KB
testcase_52 AC 265 ms
19,952 KB
testcase_53 AC 256 ms
17,544 KB
testcase_54 AC 99 ms
16,052 KB
testcase_55 AC 246 ms
17,508 KB
testcase_56 AC 134 ms
13,312 KB
testcase_57 AC 55 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
start,end = map(int,input().split())
stone = list(map(int,input().split()))
stoneMax = max(stone)
maxLen = int(len(bin(stoneMax)[2:]))

setStone= set(stone)
avoidStone = set()
from collections import deque
def bfs(u):
    queue = deque([u,0])
    while queue:
        v = queue.popleft()
        dis = queue.popleft()
        h = serchHam(v)
        if end in h:
            print(dis)
            exit()
        for i in h:
            queue.append(i)
            queue.append(dis+1)
    print(-1)
    exit() 
      
def serchHam(a):
    h=[]
    abin = bin(a+2**maxLen)[2:]
    for i in range(1,maxLen+1):
        if abin[i] == '0':
            hh = 2**(maxLen-i)+a
        else:
            hh = a-2**(maxLen-i)
        if hh == end:
            h.append(hh)
            return h
        if hh in setStone:
            if hh in avoidStone:
                continue
            else:
                h.append(hh)
                avoidStone.add(hh)
    return h

bfs(start)
0