結果

問題 No.1576 織姫と彦星
ユーザー boeboeMartinboeboeMartin
提出日時 2021-07-20 19:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,304 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,804 KB
最終ジャッジ日時 2024-07-17 13:46:59
合計ジャッジ時間 23,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,572 KB
testcase_01 AC 41 ms
54,220 KB
testcase_02 AC 41 ms
54,544 KB
testcase_03 AC 43 ms
54,072 KB
testcase_04 AC 41 ms
53,868 KB
testcase_05 AC 41 ms
54,804 KB
testcase_06 AC 45 ms
59,656 KB
testcase_07 AC 231 ms
77,016 KB
testcase_08 AC 132 ms
77,048 KB
testcase_09 AC 81 ms
76,744 KB
testcase_10 AC 771 ms
77,548 KB
testcase_11 AC 80 ms
77,080 KB
testcase_12 AC 471 ms
77,480 KB
testcase_13 AC 493 ms
77,152 KB
testcase_14 AC 691 ms
77,364 KB
testcase_15 AC 631 ms
77,564 KB
testcase_16 AC 375 ms
77,392 KB
testcase_17 AC 558 ms
77,640 KB
testcase_18 AC 166 ms
77,372 KB
testcase_19 AC 279 ms
77,704 KB
testcase_20 AC 85 ms
76,812 KB
testcase_21 AC 579 ms
77,612 KB
testcase_22 AC 189 ms
76,868 KB
testcase_23 AC 97 ms
77,292 KB
testcase_24 AC 137 ms
77,128 KB
testcase_25 AC 542 ms
77,760 KB
testcase_26 AC 335 ms
77,560 KB
testcase_27 AC 81 ms
76,852 KB
testcase_28 AC 511 ms
77,364 KB
testcase_29 AC 340 ms
77,580 KB
testcase_30 AC 55 ms
66,348 KB
testcase_31 AC 331 ms
77,596 KB
testcase_32 AC 528 ms
77,692 KB
testcase_33 AC 1,221 ms
77,520 KB
testcase_34 AC 81 ms
77,248 KB
testcase_35 AC 423 ms
77,648 KB
testcase_36 AC 134 ms
77,020 KB
testcase_37 AC 1,304 ms
77,524 KB
testcase_38 AC 649 ms
77,740 KB
testcase_39 AC 484 ms
77,424 KB
testcase_40 AC 360 ms
77,524 KB
testcase_41 AC 421 ms
77,520 KB
testcase_42 AC 96 ms
77,064 KB
testcase_43 AC 161 ms
77,292 KB
testcase_44 AC 1,247 ms
77,472 KB
testcase_45 AC 276 ms
77,164 KB
testcase_46 AC 807 ms
77,532 KB
testcase_47 AC 89 ms
76,808 KB
testcase_48 AC 491 ms
77,468 KB
testcase_49 AC 451 ms
77,368 KB
testcase_50 AC 87 ms
77,356 KB
testcase_51 AC 92 ms
76,840 KB
testcase_52 AC 157 ms
77,344 KB
testcase_53 AC 789 ms
77,804 KB
testcase_54 AC 609 ms
77,636 KB
testcase_55 AC 640 ms
77,624 KB
testcase_56 AC 694 ms
77,664 KB
testcase_57 AC 80 ms
77,088 KB
testcase_58 AC 226 ms
77,032 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    l = []
    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()
            
            l.append(i)
    
    for i in l:
        stone.remove(i)


print(-1)
0