結果

問題 No.2287 ++ -- *=a /=a
ユーザー とりゐとりゐ
提出日時 2023-04-28 23:45:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,467 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 204,272 KB
最終ジャッジ日時 2024-11-17 22:35:05
合計ジャッジ時間 69,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
83,700 KB
testcase_01 WA -
testcase_02 AC 243 ms
85,632 KB
testcase_03 WA -
testcase_04 AC 328 ms
87,044 KB
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def naive(x,y,a):
  if x==y:
    return 0
  todo=deque()
  todo.append((x,0))
  seen=set([x])
  while todo:
    v,res=todo.popleft()
    if v==y:
      return res
    if res>10:
      return 10**9
    if v+1 not in seen:
      seen.add(v+1)
      todo.append((v+1,res+1))
    if v>0 and v-1 not in seen:
      seen.add(v-1)
      todo.append((v-1,res+1))
    if v*a not in seen:
      seen.add(v*a)
      todo.append((v*a,res+1))
    if v//a not in seen:
      seen.add(v//a)
      todo.append((v//a,res+1))


from sys import stdin
input=lambda :stdin.readline()[:-1]

memo={}

def calc(y,x,a,k):
  if y in memo:
    return memo[y]
  ans=abs(y-x)
  tmpL,tmpR=y,y+1
  res=0
  while tmpR//a<=x:
    tmpL*=a
    tmpR*=a
    res+=1
    if tmpL<=x<tmpR:
      ans=min(ans,res)
    else:
      ans=min(ans,res+min(abs(tmpL-x),res+abs(tmpR-x)))
  
  y1=y//a
  if y1<y:
    res1=min(abs(y1*a-y)+1,abs(y-y1))+calc(y1,x,a,k+1)
    ans=min(ans,res1)
  y2=(y+a-1)//a
  if y2<y:
    res2=min(abs(y2*a-y)+1,abs(y-y2))+calc(y2,x,a,k+1)
    ans=min(ans,res2)
  
  if k<=120:
    ans=min(ans,calc(y+1,x,a,k+1)+1)
    if y!=0:
      ans=min(ans,calc(y-1,x,a,k+1)+1)
  memo[y]=ans
  return ans

for _ in range(0):
  import random
  memo.clear()
  x=random.randint(0,10**18)
  y=random.randint(0,10**18)
  a=random.randint(2,10**18)
  print(calc(y,x,a,1))

for _ in range(int(input())):
  memo.clear()
  x,y,a=map(int,input().split())
  print(calc(y,x,a,1))
0