結果

問題 No.1576 織姫と彦星
ユーザー kitatike55kitatike55
提出日時 2021-07-08 22:32:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-01 12:51:25
合計ジャッジ時間 7,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 60 ms
11,008 KB
testcase_08 AC 41 ms
10,880 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 166 ms
11,008 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 105 ms
10,880 KB
testcase_13 AC 109 ms
11,136 KB
testcase_14 AC 147 ms
11,136 KB
testcase_15 AC 135 ms
11,008 KB
testcase_16 AC 86 ms
10,880 KB
testcase_17 AC 123 ms
10,880 KB
testcase_18 AC 47 ms
10,752 KB
testcase_19 AC 68 ms
11,008 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 125 ms
11,008 KB
testcase_22 AC 52 ms
10,880 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 43 ms
10,880 KB
testcase_25 AC 119 ms
10,880 KB
testcase_26 AC 81 ms
11,008 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 112 ms
11,008 KB
testcase_29 AC 82 ms
11,008 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 78 ms
10,880 KB
testcase_32 AC 117 ms
11,008 KB
testcase_33 AC 257 ms
10,880 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 95 ms
10,880 KB
testcase_36 AC 42 ms
10,752 KB
testcase_37 AC 267 ms
10,880 KB
testcase_38 AC 138 ms
11,008 KB
testcase_39 AC 106 ms
10,880 KB
testcase_40 AC 83 ms
10,880 KB
testcase_41 AC 97 ms
10,880 KB
testcase_42 AC 35 ms
10,880 KB
testcase_43 AC 47 ms
10,880 KB
testcase_44 AC 259 ms
11,008 KB
testcase_45 AC 69 ms
11,008 KB
testcase_46 AC 174 ms
11,008 KB
testcase_47 AC 34 ms
10,752 KB
testcase_48 AC 109 ms
10,880 KB
testcase_49 AC 104 ms
10,880 KB
testcase_50 AC 33 ms
10,880 KB
testcase_51 AC 34 ms
10,752 KB
testcase_52 AC 48 ms
11,008 KB
testcase_53 AC 157 ms
10,880 KB
testcase_54 AC 131 ms
10,880 KB
testcase_55 AC 136 ms
10,880 KB
testcase_56 AC 145 ms
11,008 KB
testcase_57 AC 32 ms
10,752 KB
testcase_58 AC 59 ms
10,880 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:]))


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 stoneS:
            if i in h:
                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':
            h.append(2**(maxLen-i)+a)
        else:
            h.append(a-2**(maxLen-i))
    return h

bfs(start)
0