結果

問題 No.1577 織姫と彦星2
ユーザー kitatike55kitatike55
提出日時 2021-07-08 23:25:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 1,104 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,336 KB
最終ジャッジ日時 2024-07-01 13:15:24
合計ジャッジ時間 9,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 38 ms
13,184 KB
testcase_06 AC 33 ms
11,520 KB
testcase_07 AC 74 ms
16,612 KB
testcase_08 AC 156 ms
13,808 KB
testcase_09 AC 277 ms
19,384 KB
testcase_10 AC 72 ms
13,440 KB
testcase_11 AC 46 ms
11,264 KB
testcase_12 AC 157 ms
16,388 KB
testcase_13 AC 47 ms
13,048 KB
testcase_14 AC 225 ms
17,040 KB
testcase_15 AC 129 ms
13,440 KB
testcase_16 AC 266 ms
18,976 KB
testcase_17 AC 156 ms
15,820 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 314 ms
19,028 KB
testcase_20 AC 290 ms
18,748 KB
testcase_21 AC 368 ms
19,500 KB
testcase_22 AC 260 ms
19,712 KB
testcase_23 AC 151 ms
13,556 KB
testcase_24 AC 231 ms
17,532 KB
testcase_25 AC 89 ms
13,184 KB
testcase_26 AC 154 ms
13,696 KB
testcase_27 AC 86 ms
16,908 KB
testcase_28 AC 210 ms
17,092 KB
testcase_29 AC 86 ms
16,000 KB
testcase_30 AC 150 ms
16,052 KB
testcase_31 AC 259 ms
18,744 KB
testcase_32 AC 33 ms
11,136 KB
testcase_33 AC 34 ms
10,880 KB
testcase_34 AC 115 ms
15,628 KB
testcase_35 AC 254 ms
19,300 KB
testcase_36 AC 302 ms
19,380 KB
testcase_37 AC 489 ms
19,476 KB
testcase_38 AC 206 ms
17,548 KB
testcase_39 AC 122 ms
13,824 KB
testcase_40 AC 129 ms
14,032 KB
testcase_41 AC 108 ms
17,416 KB
testcase_42 AC 81 ms
16,668 KB
testcase_43 AC 93 ms
16,692 KB
testcase_44 AC 35 ms
11,136 KB
testcase_45 AC 84 ms
12,800 KB
testcase_46 AC 52 ms
12,672 KB
testcase_47 AC 72 ms
17,328 KB
testcase_48 AC 61 ms
13,568 KB
testcase_49 AC 126 ms
15,912 KB
testcase_50 AC 65 ms
13,184 KB
testcase_51 AC 34 ms
11,648 KB
testcase_52 AC 261 ms
20,336 KB
testcase_53 AC 254 ms
17,528 KB
testcase_54 AC 98 ms
16,056 KB
testcase_55 AC 243 ms
17,508 KB
testcase_56 AC 133 ms
13,440 KB
testcase_57 AC 53 ms
12,160 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()
        # stoneS = stone.copy()
        for i in h:
            # if i in setStone:
            queue.append(i)
            queue.append(dis+1)
                # stone.remove(i)
    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)
    # print(h)
    return h

bfs(start)
0