結果

問題 No.1576 織姫と彦星
ユーザー ああいいああいい
提出日時 2021-12-23 19:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-17 17:43:04
合計ジャッジ時間 36,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 333 ms
10,752 KB
testcase_08 AC 136 ms
10,624 KB
testcase_09 AC 37 ms
10,624 KB
testcase_10 AC 1,378 ms
10,624 KB
testcase_11 AC 37 ms
10,752 KB
testcase_12 AC 767 ms
10,880 KB
testcase_13 AC 863 ms
10,880 KB
testcase_14 AC 1,237 ms
10,624 KB
testcase_15 AC 1,101 ms
10,752 KB
testcase_16 AC 593 ms
10,752 KB
testcase_17 AC 968 ms
10,880 KB
testcase_18 AC 181 ms
10,624 KB
testcase_19 AC 400 ms
10,752 KB
testcase_20 AC 57 ms
10,752 KB
testcase_21 AC 1,017 ms
10,880 KB
testcase_22 AC 247 ms
11,008 KB
testcase_23 AC 70 ms
10,752 KB
testcase_24 AC 139 ms
10,752 KB
testcase_25 AC 918 ms
11,008 KB
testcase_26 AC 531 ms
10,624 KB
testcase_27 AC 42 ms
10,752 KB
testcase_28 AC 847 ms
10,752 KB
testcase_29 AC 521 ms
10,752 KB
testcase_30 AC 33 ms
10,752 KB
testcase_31 AC 508 ms
10,752 KB
testcase_32 AC 899 ms
10,752 KB
testcase_33 TLE -
testcase_34 AC 39 ms
10,624 KB
testcase_35 AC 682 ms
10,880 KB
testcase_36 AC 137 ms
10,880 KB
testcase_37 TLE -
testcase_38 AC 1,171 ms
10,752 KB
testcase_39 AC 793 ms
10,624 KB
testcase_40 AC 555 ms
10,624 KB
testcase_41 AC 668 ms
10,752 KB
testcase_42 AC 62 ms
10,752 KB
testcase_43 AC 188 ms
10,752 KB
testcase_44 TLE -
testcase_45 AC 406 ms
10,624 KB
testcase_46 AC 1,491 ms
10,880 KB
testcase_47 AC 59 ms
10,752 KB
testcase_48 AC 847 ms
10,624 KB
testcase_49 AC 776 ms
10,624 KB
testcase_50 AC 50 ms
10,752 KB
testcase_51 AC 60 ms
10,752 KB
testcase_52 AC 202 ms
10,880 KB
testcase_53 AC 1,345 ms
10,624 KB
testcase_54 AC 1,049 ms
10,880 KB
testcase_55 AC 1,113 ms
10,880 KB
testcase_56 AC 1,219 ms
10,880 KB
testcase_57 AC 38 ms
10,880 KB
testcase_58 AC 314 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s,e = map(int,input().split())
l = list(map(int,input().split()))
l.insert(0,s)
l.append(e)
C = 10 ** 5
memo = [C] * (N + 2)
memo[0] = 0

def hamu(a,b):
    count = 0
    while a != 0 or b != 0:
        if a & 1 != b & 1:
            count += 1
        a >>= 1
        b >>= 1
    return count < 2
    
from collections import deque
q = deque()
q.append(0)
while len(q):
    now = q.popleft()
    for i in range(N+2):
        if memo[i] == C:
            if hamu(l[i],l[now]):
                memo[i] = memo[now] + 1
                q.append(i)
if memo[-1] == C:
    print(-1)
else:
    print(memo[-1]-1)
0