結果

問題 No.2287 ++ -- *=a /=a
ユーザー 👑 rin204rin204
提出日時 2024-04-29 22:21:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,532 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 97,896 KB
最終ジャッジ日時 2024-11-19 06:59:03
合計ジャッジ時間 15,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,084 KB
testcase_01 AC 59 ms
66,360 KB
testcase_02 AC 61 ms
67,008 KB
testcase_03 AC 58 ms
65,904 KB
testcase_04 AC 63 ms
66,852 KB
testcase_05 AC 64 ms
67,096 KB
testcase_06 AC 459 ms
79,460 KB
testcase_07 AC 465 ms
79,332 KB
testcase_08 AC 483 ms
79,108 KB
testcase_09 AC 325 ms
78,192 KB
testcase_10 AC 327 ms
78,084 KB
testcase_11 AC 289 ms
77,852 KB
testcase_12 AC 305 ms
77,852 KB
testcase_13 AC 288 ms
78,188 KB
testcase_14 AC 306 ms
78,576 KB
testcase_15 AC 291 ms
77,948 KB
testcase_16 AC 273 ms
78,352 KB
testcase_17 AC 284 ms
78,124 KB
testcase_18 AC 1,216 ms
87,300 KB
testcase_19 AC 909 ms
82,800 KB
testcase_20 AC 845 ms
81,664 KB
testcase_21 AC 766 ms
81,208 KB
testcase_22 AC 719 ms
80,636 KB
testcase_23 AC 689 ms
80,756 KB
testcase_24 AC 678 ms
80,664 KB
testcase_25 AC 717 ms
80,764 KB
testcase_26 AC 645 ms
81,040 KB
testcase_27 AC 1,532 ms
97,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *


def solve():
    x, y, a = map(int, input().split())
    E = []
    X = [x, y]
    s = x
    t = y
    while x > 0:
        nx = x // a
        X.append(nx)
        E.append((x, nx, 1))
        x = nx

    while y > 0:
        ny = y // a
        E.append((ny, ny * a, 1))
        E.append((ny + 1, (ny + 1) * a, 1))
        E.append((ny, ny + 1, 1))
        E.append((ny + 1, ny, 1))
        X.append(ny)
        X.append(ny * a)
        X.append(ny + 1)
        X.append((ny + 1) * a)
        y = ny

    X_ = sorted(list(set(X)))
    X = {x: i for i, x in enumerate(X_)}
    le = len(X)
    edges = [[] for _ in range(le)]
    for u, v, c in E:
        edges[X[u]].append((X[v], c))

    for i in range(le - 1):
        d = X_[i + 1] - X_[i]
        edges[i].append((i + 1, d))
        edges[i + 1].append((i, d))

    dist = [1 << 60] * le
    s = X[s]
    t = X[t]
    dist[s] = 0
    hq = [s]
    while hq:
        tmp = heappop(hq)
        d = tmp // le
        pos = tmp - le * d
        if dist[pos] < d:
            continue
        for npos, c in edges[pos]:
            nd = d + c
            if nd < dist[npos]:
                dist[npos] = nd
                heappush(hq, nd * le + npos)

    print(dist[t])


for _ in range(int(input())):
    solve()
0