結果

問題 No.1576 織姫と彦星
ユーザー boeboeMartinboeboeMartin
提出日時 2021-07-21 14:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 1,058 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,752 KB
最終ジャッジ日時 2024-07-17 14:00:39
合計ジャッジ時間 9,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,508 KB
testcase_01 AC 43 ms
54,808 KB
testcase_02 AC 41 ms
54,520 KB
testcase_03 AC 40 ms
55,244 KB
testcase_04 AC 41 ms
53,496 KB
testcase_05 AC 40 ms
54,708 KB
testcase_06 AC 41 ms
54,468 KB
testcase_07 AC 99 ms
76,244 KB
testcase_08 AC 74 ms
76,160 KB
testcase_09 AC 53 ms
66,064 KB
testcase_10 AC 252 ms
76,268 KB
testcase_11 AC 52 ms
66,372 KB
testcase_12 AC 166 ms
76,412 KB
testcase_13 AC 173 ms
76,392 KB
testcase_14 AC 231 ms
76,292 KB
testcase_15 AC 209 ms
76,260 KB
testcase_16 AC 142 ms
76,016 KB
testcase_17 AC 193 ms
76,376 KB
testcase_18 AC 82 ms
76,220 KB
testcase_19 AC 112 ms
76,608 KB
testcase_20 AC 59 ms
71,080 KB
testcase_21 AC 200 ms
76,624 KB
testcase_22 AC 94 ms
76,260 KB
testcase_23 AC 59 ms
74,248 KB
testcase_24 AC 74 ms
76,060 KB
testcase_25 AC 187 ms
76,336 KB
testcase_26 AC 127 ms
76,572 KB
testcase_27 AC 54 ms
67,056 KB
testcase_28 AC 178 ms
76,456 KB
testcase_29 AC 129 ms
76,456 KB
testcase_30 AC 46 ms
61,420 KB
testcase_31 AC 128 ms
76,396 KB
testcase_32 AC 182 ms
76,432 KB
testcase_33 AC 377 ms
76,352 KB
testcase_34 AC 53 ms
65,532 KB
testcase_35 AC 154 ms
76,204 KB
testcase_36 AC 73 ms
75,960 KB
testcase_37 AC 406 ms
76,752 KB
testcase_38 AC 214 ms
76,624 KB
testcase_39 AC 169 ms
76,276 KB
testcase_40 AC 137 ms
76,328 KB
testcase_41 AC 153 ms
76,384 KB
testcase_42 AC 58 ms
72,576 KB
testcase_43 AC 81 ms
76,044 KB
testcase_44 AC 377 ms
76,516 KB
testcase_45 AC 113 ms
75,944 KB
testcase_46 AC 266 ms
76,352 KB
testcase_47 AC 56 ms
69,724 KB
testcase_48 AC 172 ms
76,544 KB
testcase_49 AC 162 ms
76,416 KB
testcase_50 AC 56 ms
69,376 KB
testcase_51 AC 57 ms
72,168 KB
testcase_52 AC 83 ms
76,048 KB
testcase_53 AC 242 ms
76,260 KB
testcase_54 AC 206 ms
76,516 KB
testcase_55 AC 216 ms
76,340 KB
testcase_56 AC 226 ms
76,412 KB
testcase_57 AC 53 ms
66,652 KB
testcase_58 AC 99 ms
76,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
# import time

def hmg_d(a, b):
    x = bin(a ^ b)
    cnt = 0
    for i in x:
        if i == "1":
            cnt += 1
        if cnt > 1:
            return False
    if cnt == 1:
        return True
    else:
        return False

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

# start_time = time.time()

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

stone_dict = {}
stone_dict[start] = 0
end_dict = {}
for i in stone:
    stone_dict[i] = 0
    end_dict[i] = 0
    if hmg_d(i, end):
        end_dict[i] = 1

queue = deque()
queue.append(start)

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

            # 終了条件
            if end_dict[i] == 1:
                print(stone_dict[i])
                # print(time.time() - start_time)
                exit()
            
            l.append(i)
    
    for i in l:
        stone.remove(i)

print(-1)
0