結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 583 ms
10,880 KB
testcase_08 AC 423 ms
10,880 KB
testcase_09 AC 39 ms
10,624 KB
testcase_10 AC 1,667 ms
10,880 KB
testcase_11 AC 43 ms
10,752 KB
testcase_12 AC 976 ms
10,880 KB
testcase_13 TLE -
testcase_14 AC 1,303 ms
11,008 KB
testcase_15 AC 1,291 ms
11,008 KB
testcase_16 AC 1,737 ms
10,880 KB
testcase_17 AC 1,326 ms
11,008 KB
testcase_18 AC 208 ms
10,880 KB
testcase_19 AC 391 ms
10,880 KB
testcase_20 AC 1,404 ms
10,880 KB
testcase_21 AC 1,222 ms
11,008 KB
testcase_22 AC 1,536 ms
10,752 KB
testcase_23 AC 167 ms
10,880 KB
testcase_24 AC 159 ms
10,880 KB
testcase_25 AC 1,819 ms
10,880 KB
testcase_26 AC 506 ms
10,880 KB
testcase_27 AC 55 ms
10,752 KB
testcase_28 AC 1,579 ms
10,880 KB
testcase_29 AC 505 ms
10,880 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 589 ms
10,880 KB
testcase_32 AC 1,256 ms
10,880 KB
testcase_33 TLE -
testcase_34 AC 43 ms
10,752 KB
testcase_35 AC 696 ms
11,008 KB
testcase_36 AC 135 ms
10,624 KB
testcase_37 TLE -
testcase_38 AC 1,570 ms
10,880 KB
testcase_39 AC 853 ms
10,880 KB
testcase_40 AC 618 ms
10,880 KB
testcase_41 AC 723 ms
10,880 KB
testcase_42 AC 61 ms
10,752 KB
testcase_43 AC 212 ms
10,752 KB
testcase_44 TLE -
testcase_45 AC 597 ms
11,008 KB
testcase_46 AC 1,448 ms
10,880 KB
testcase_47 AC 264 ms
11,008 KB
testcase_48 AC 843 ms
10,880 KB
testcase_49 AC 779 ms
10,880 KB
testcase_50 AC 51 ms
10,752 KB
testcase_51 AC 162 ms
10,752 KB
testcase_52 TLE -
testcase_53 AC 1,295 ms
10,752 KB
testcase_54 AC 1,759 ms
10,880 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 37 ms
10,880 KB
testcase_58 AC 463 ms
10,880 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
G = [[] for _ in range(N + 2)]
for i in range(N+1):
    for j in range(i + 1,N + 2):
        if hamu(l[i],l[j]):
            G[i].append(j)
            G[j].append(i)
    
from collections import deque
q = deque()
q.append(0)
while len(q):
    now = q.popleft()
    for v in G[now]:
        if memo[v] == C:
            memo[v] = memo[now] + 1
            q.append(v)
if memo[-1] == C:
    print(-1)
else:
    print(memo[-1]-1)
0