結果
| 問題 |
No.2287 ++ -- *=a /=a
|
| コンテスト | |
| ユーザー |
sapphire__15
|
| 提出日時 | 2023-02-22 15:02:23 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,398 bytes |
| コンパイル時間 | 678 ms |
| コンパイル使用メモリ | 84,532 KB |
| 最終ジャッジ日時 | 2025-02-10 19:53:21 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 26 |
ソースコード
#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++) {
if(x == 0) break;
fromX.emplace_back(x, i);
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';
}
}
sapphire__15