結果

問題 No.1576 織姫と彦星
ユーザー boeboeMartinboeboeMartin
提出日時 2021-07-20 18:42:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 748 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 78,320 KB
最終ジャッジ日時 2024-07-17 13:45:34
合計ジャッジ時間 31,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,436 KB
testcase_01 AC 42 ms
54,056 KB
testcase_02 AC 41 ms
54,372 KB
testcase_03 AC 42 ms
54,416 KB
testcase_04 AC 41 ms
53,496 KB
testcase_05 AC 41 ms
54,492 KB
testcase_06 AC 47 ms
61,524 KB
testcase_07 AC 271 ms
77,260 KB
testcase_08 AC 141 ms
76,936 KB
testcase_09 AC 85 ms
77,484 KB
testcase_10 AC 1,061 ms
77,536 KB
testcase_11 AC 80 ms
76,892 KB
testcase_12 AC 609 ms
77,676 KB
testcase_13 AC 564 ms
77,196 KB
testcase_14 AC 1,001 ms
77,844 KB
testcase_15 AC 844 ms
77,428 KB
testcase_16 AC 415 ms
77,464 KB
testcase_17 AC 697 ms
77,520 KB
testcase_18 AC 204 ms
77,388 KB
testcase_19 AC 438 ms
77,828 KB
testcase_20 AC 85 ms
77,116 KB
testcase_21 AC 771 ms
77,512 KB
testcase_22 AC 197 ms
77,364 KB
testcase_23 AC 99 ms
77,364 KB
testcase_24 AC 170 ms
77,596 KB
testcase_25 AC 621 ms
77,516 KB
testcase_26 AC 558 ms
77,340 KB
testcase_27 AC 84 ms
76,876 KB
testcase_28 AC 595 ms
77,552 KB
testcase_29 AC 573 ms
77,712 KB
testcase_30 AC 59 ms
67,772 KB
testcase_31 AC 437 ms
77,148 KB
testcase_32 AC 666 ms
77,404 KB
testcase_33 AC 1,892 ms
78,148 KB
testcase_34 AC 80 ms
77,284 KB
testcase_35 AC 622 ms
78,016 KB
testcase_36 AC 184 ms
77,704 KB
testcase_37 AC 1,991 ms
78,320 KB
testcase_38 AC 820 ms
77,484 KB
testcase_39 AC 696 ms
77,884 KB
testcase_40 AC 489 ms
77,684 KB
testcase_41 AC 597 ms
77,440 KB
testcase_42 AC 109 ms
77,376 KB
testcase_43 AC 202 ms
77,340 KB
testcase_44 TLE -
testcase_45 AC 334 ms
77,608 KB
testcase_46 AC 1,359 ms
77,440 KB
testcase_47 AC 89 ms
76,928 KB
testcase_48 AC 767 ms
77,304 KB
testcase_49 AC 679 ms
77,620 KB
testcase_50 AC 94 ms
76,904 KB
testcase_51 AC 94 ms
76,880 KB
testcase_52 AC 159 ms
77,032 KB
testcase_53 AC 1,391 ms
77,660 KB
testcase_54 AC 718 ms
77,568 KB
testcase_55 AC 732 ms
77,752 KB
testcase_56 AC 800 ms
77,596 KB
testcase_57 AC 85 ms
76,828 KB
testcase_58 AC 277 ms
77,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from collections import deque

def hmg_d(a, b):
    count = Counter(list(bin(a ^ b)))
    if count["1"] == 1:
        return True
    else:
        return False

n = int(input())
start, end = map(int,input().split())
stone = list(map(int,input().split()))

if hmg_d(start, end):
    print(0)
    exit()

stone_dict = {}
stone_dict[start] = 0
for i in stone:
    stone_dict[i] = 0

queue = deque()
queue.append(start)

while queue:
    v = queue.popleft()
    for i in stone:
        if hmg_d(v, i):
            if stone_dict[i] == 0:
                stone_dict[i] = stone_dict[v] + 1
                queue.append(i)
            if hmg_d(i, end):
                print(stone_dict[i])
                exit()

print(-1)
0