結果

問題 No.1576 織姫と彦星
ユーザー d1k0b3od1k0b3o
提出日時 2021-07-18 18:46:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,925 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-08 12:28:38
合計ジャッジ時間 9,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 48 ms
11,008 KB
testcase_08 AC 34 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 237 ms
11,136 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 117 ms
11,008 KB
testcase_13 AC 108 ms
11,008 KB
testcase_14 AC 219 ms
11,008 KB
testcase_15 AC 121 ms
11,136 KB
testcase_16 AC 75 ms
11,008 KB
testcase_17 AC 100 ms
11,008 KB
testcase_18 AC 41 ms
10,880 KB
testcase_19 AC 68 ms
11,008 KB
testcase_20 AC 28 ms
11,008 KB
testcase_21 AC 105 ms
11,008 KB
testcase_22 AC 41 ms
11,136 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 35 ms
11,008 KB
testcase_25 AC 84 ms
11,008 KB
testcase_26 AC 85 ms
11,008 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 88 ms
11,136 KB
testcase_29 AC 91 ms
11,008 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 66 ms
10,880 KB
testcase_32 AC 96 ms
11,008 KB
testcase_33 AC 232 ms
11,136 KB
testcase_34 AC 28 ms
10,880 KB
testcase_35 AC 147 ms
11,008 KB
testcase_36 AC 38 ms
10,880 KB
testcase_37 AC 1,925 ms
11,008 KB
testcase_38 AC 120 ms
11,008 KB
testcase_39 AC 326 ms
11,008 KB
testcase_40 AC 70 ms
10,880 KB
testcase_41 AC 175 ms
11,008 KB
testcase_42 AC 30 ms
10,880 KB
testcase_43 AC 38 ms
10,880 KB
testcase_44 AC 1,132 ms
11,008 KB
testcase_45 AC 58 ms
10,880 KB
testcase_46 AC 195 ms
11,008 KB
testcase_47 AC 32 ms
10,880 KB
testcase_48 AC 109 ms
11,008 KB
testcase_49 AC 496 ms
11,008 KB
testcase_50 AC 30 ms
10,880 KB
testcase_51 AC 32 ms
11,008 KB
testcase_52 AC 38 ms
11,008 KB
testcase_53 AC 182 ms
11,008 KB
testcase_54 AC 94 ms
11,008 KB
testcase_55 AC 104 ms
11,008 KB
testcase_56 AC 111 ms
11,136 KB
testcase_57 AC 28 ms
10,880 KB
testcase_58 AC 45 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import deque
def is_ham1(a,b):
    if math.log2(a^b).is_integer():
        return True
    else:
        return False

n = int(input())
s,g = map(int,input().split())
ishi = [g]+ list(map(int,input().split()))
q=deque()

q.append([s,0])
S=set()
S.add(s)
while q:
    a = q.popleft()
    S.add(a[0]) 
    for b in ishi:
        if a[0]==b: continue
        if not is_ham1(a[0],b): continue
        if b in S: continue
        if b==g:
            print(a[1])
            exit()
        q.append([b,a[1]+1])

print(-1)
0