結果

問題 No.2287 ++ -- *=a /=a
ユーザー sapphire__15sapphire__15
提出日時 2023-02-22 15:03:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,398 bytes
コンパイル時間 959 ms
コンパイル使用メモリ 89,956 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 22:26:39
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 45 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 22 ms
5,376 KB
testcase_21 AC 20 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 16 ms
5,376 KB
testcase_26 AC 15 ms
5,376 KB
testcase_27 AC 112 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <tuple>
#include <vector>
using namespace std;

using ll = long long;

ll solve(ll x, ll y, ll a) {
    vector<tuple<ll, ll>> fromX;
    for (ll i = 0; i < 100; i++) {
        fromX.emplace_back(x, i);
        if(x == 0) break;
        x /= a;
    }

    // from[i] = {floor(y / a^i), y to floor(y / a^i), y to floor(y / a^i) + 1}
    vector<tuple<ll, ll, ll>> fromY;
    fromY.emplace_back(y, 0, 1e9);
    while (1) {
        auto [i, j, k] = fromY.back();
        ll d = i / a, r = i % a;
        if (r == 0) {
            fromY.emplace_back(d, min(j + 1, k + 2), k + a);
        } else if (r == a - 1) {
            fromY.emplace_back(d, j + a, min(j + 2, k + 1));
        } else {
            fromY.emplace_back(
                d, min(j + r + 1, k + r + 2), min(j + a - r + 1, k + a - r));
        }
        if (i == 0) break;
    }

    ll ans = 1e9;
    for (auto &i : fromX) {
        for (auto &j : fromY) {
            ans = min({ans,
                       abs(get<0>(j) - get<0>(i)) + get<1>(j) + get<1>(i),
                       abs(get<0>(j) + 1 - get<0>(i)) + get<2>(j) + get<1>(i)});
        }
    }
    return ans;
}

int main() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    ll t; cin >> t;
    for(ll i = 0; i < t; i++) {
        ll x, y, a; cin >> x >> y >> a;
        cout << solve(x, y, a) << '\n';
    }
}
0