結果

問題 No.1577 織姫と彦星2
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-07-02 08:40:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 96,808 KB
最終ジャッジ日時 2024-06-28 19:05:33
合計ジャッジ時間 10,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 49 ms
54,016 KB
testcase_05 AC 71 ms
70,912 KB
testcase_06 AC 62 ms
65,024 KB
testcase_07 AC 203 ms
91,392 KB
testcase_08 AC 125 ms
82,944 KB
testcase_09 AC 276 ms
96,808 KB
testcase_10 AC 112 ms
81,920 KB
testcase_11 AC 78 ms
69,760 KB
testcase_12 AC 144 ms
86,528 KB
testcase_13 AC 89 ms
76,032 KB
testcase_14 AC 162 ms
89,216 KB
testcase_15 AC 110 ms
81,024 KB
testcase_16 AC 199 ms
91,264 KB
testcase_17 AC 139 ms
85,120 KB
testcase_18 AC 54 ms
60,672 KB
testcase_19 AC 178 ms
89,344 KB
testcase_20 AC 159 ms
87,040 KB
testcase_21 AC 185 ms
90,880 KB
testcase_22 AC 190 ms
90,880 KB
testcase_23 AC 120 ms
82,176 KB
testcase_24 AC 193 ms
95,616 KB
testcase_25 AC 106 ms
79,616 KB
testcase_26 AC 119 ms
82,432 KB
testcase_27 AC 155 ms
92,160 KB
testcase_28 AC 166 ms
87,168 KB
testcase_29 AC 118 ms
84,480 KB
testcase_30 AC 134 ms
85,632 KB
testcase_31 AC 188 ms
91,008 KB
testcase_32 AC 63 ms
65,024 KB
testcase_33 AC 57 ms
62,080 KB
testcase_34 AC 120 ms
84,224 KB
testcase_35 AC 183 ms
89,216 KB
testcase_36 AC 190 ms
91,264 KB
testcase_37 AC 230 ms
96,600 KB
testcase_38 AC 226 ms
95,616 KB
testcase_39 AC 124 ms
83,072 KB
testcase_40 AC 126 ms
82,432 KB
testcase_41 AC 171 ms
93,824 KB
testcase_42 AC 129 ms
86,912 KB
testcase_43 AC 132 ms
87,168 KB
testcase_44 AC 63 ms
64,384 KB
testcase_45 AC 104 ms
79,104 KB
testcase_46 AC 88 ms
75,520 KB
testcase_47 AC 139 ms
93,568 KB
testcase_48 AC 109 ms
82,432 KB
testcase_49 AC 132 ms
84,864 KB
testcase_50 AC 109 ms
81,280 KB
testcase_51 AC 65 ms
66,176 KB
testcase_52 AC 187 ms
95,744 KB
testcase_53 AC 192 ms
95,744 KB
testcase_54 AC 123 ms
85,248 KB
testcase_55 AC 184 ms
95,616 KB
testcase_56 AC 114 ms
81,152 KB
testcase_57 AC 88 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n,s,e,a):
  a.append(s)
  a.append(e)
  g=[[] for _ in range(n+2)]
  for i in range(n+1):
    for j in range(i+1,n+2):
      x=a[i]^a[j]
      cnt=bin(x).count('1')
      if cnt<=1:
        g[i].append(j)
        g[j].append(i)
  from collections import deque
  todo=deque([n])
  seen=[-1]*(n+2)
  seen[n]=0
  while todo:
    v=todo.popleft()
    for nv in g[v]:
      if seen[nv]==-1:
        seen[nv]=seen[v]+1
        todo.append(nv)
  if seen[n+1]==-1:
    return -1
  else:
    return seen[n+1]-1
def main1(n,s,e,a):
  # a[i]<=10^9~2^30
  # 各iについてハミルトン距離が1のものを列挙→連想配列{数字:idx}の中から当てはまるものを探す
  a.append(s)
  a.append(e)
  g=[set() for _ in range(n+2)]
  d={}
  for i,x in enumerate(a):
    if x in d:
      d[x].append(i)
    else:
      d[x]=[i]
  for i,x in enumerate(a):
    for j in range(30):
      if x^(1<<j) in d:
        for k in d[x^(1<<j)]:
          g[i].add(k)
          g[k].add(i)
  from collections import deque
  todo=deque([n])
  seen=[-1]*(n+2)
  seen[n]=0
  while todo:
    v=todo.popleft()
    for nv in g[v]:
      if seen[nv]==-1:
        seen[nv]=seen[v]+1
        todo.append(nv)
  if seen[n+1]==-1:
    return -1
  else:
    return seen[n+1]-1

if __name__=='__main__':
  n=int(input())
  s,e=map(int,input().split())
  a=list(map(int,input().split()))
  #ret0=main0(n,s,e,a[:])
  ret1=main1(n,s,e,a[:])
  #print(ret0)
  print(ret1)

0