結果

問題 No.1576 織姫と彦星
ユーザー boeboeMartinboeboeMartin
提出日時 2021-07-20 19:04:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,992 KB
最終ジャッジ日時 2024-07-17 13:46:32
合計ジャッジ時間 23,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,268 KB
testcase_01 AC 43 ms
54,496 KB
testcase_02 AC 43 ms
54,596 KB
testcase_03 AC 44 ms
54,628 KB
testcase_04 AC 42 ms
54,856 KB
testcase_05 AC 43 ms
54,500 KB
testcase_06 AC 46 ms
60,432 KB
testcase_07 AC 236 ms
76,928 KB
testcase_08 AC 133 ms
76,964 KB
testcase_09 AC 83 ms
77,044 KB
testcase_10 AC 772 ms
77,644 KB
testcase_11 AC 81 ms
77,012 KB
testcase_12 AC 483 ms
77,408 KB
testcase_13 AC 544 ms
76,984 KB
testcase_14 AC 684 ms
77,252 KB
testcase_15 AC 624 ms
77,392 KB
testcase_16 AC 374 ms
77,076 KB
testcase_17 AC 558 ms
77,504 KB
testcase_18 AC 164 ms
77,220 KB
testcase_19 AC 278 ms
77,812 KB
testcase_20 AC 87 ms
77,112 KB
testcase_21 AC 577 ms
77,304 KB
testcase_22 AC 188 ms
77,104 KB
testcase_23 AC 99 ms
77,080 KB
testcase_24 AC 140 ms
77,128 KB
testcase_25 AC 540 ms
77,508 KB
testcase_26 AC 339 ms
77,308 KB
testcase_27 AC 85 ms
76,808 KB
testcase_28 AC 532 ms
77,272 KB
testcase_29 AC 339 ms
77,560 KB
testcase_30 AC 54 ms
65,352 KB
testcase_31 AC 328 ms
77,336 KB
testcase_32 AC 527 ms
77,456 KB
testcase_33 AC 1,210 ms
77,516 KB
testcase_34 AC 82 ms
76,836 KB
testcase_35 AC 418 ms
77,548 KB
testcase_36 AC 139 ms
77,416 KB
testcase_37 AC 1,303 ms
77,540 KB
testcase_38 AC 648 ms
77,568 KB
testcase_39 AC 484 ms
77,796 KB
testcase_40 AC 356 ms
77,392 KB
testcase_41 AC 421 ms
77,388 KB
testcase_42 AC 100 ms
77,236 KB
testcase_43 AC 161 ms
77,064 KB
testcase_44 AC 1,291 ms
77,380 KB
testcase_45 AC 277 ms
77,016 KB
testcase_46 AC 860 ms
77,300 KB
testcase_47 AC 90 ms
76,860 KB
testcase_48 AC 492 ms
77,388 KB
testcase_49 AC 450 ms
77,356 KB
testcase_50 AC 91 ms
76,864 KB
testcase_51 AC 95 ms
76,764 KB
testcase_52 AC 162 ms
77,072 KB
testcase_53 AC 788 ms
77,992 KB
testcase_54 AC 655 ms
77,388 KB
testcase_55 AC 639 ms
77,456 KB
testcase_56 AC 690 ms
77,684 KB
testcase_57 AC 80 ms
76,696 KB
testcase_58 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from collections import deque
# import time
# start_time = time.time()

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])
                # print(time.time() - start_time)
                exit()
            
            stone.remove(i)

print(-1)
0