QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#693905#6440. Xingqiu's JokeZero#WA 648ms24308kbC++201.9kb2024-10-31 16:56:152024-10-31 16:56:17

Judging History

你现在查看的是最新测评结果

  • [2024-10-31 16:56:17]
  • 评测
  • 测评结果:WA
  • 用时:648ms
  • 内存:24308kb
  • [2024-10-31 16:56:15]
  • 提交

answer

#include <bits/stdc++.h>
#pragma GCC optimize (3)
#define de(a) cout << #a << " = " << a << "\n";
#define deg(a) cout << #a << " = " << a << " ";
#define lowbit(x) ((x) & (-x))
// #define int long long
#define siz(a) ((int)a.size())
#define all(a) a.begin(), a.end()
#define PII pair<int, int>
using ll  = long long;
using ull = unsigned long long;
using namespace std;
constexpr ll inf = 1e18;
constexpr int N = 1e6 + 10;

std::map<std::pair<int, int>, int> mp;

void solve(int Case) {
	int a, b;
    std::cin >> a >> b;
    if (a < b) std::swap(a, b);

    int d = a - b, ans = b - 1;

    if (d == 1) {
        std::cout << ans << '\n';
        return;
    }

    std::vector<int> h;
    for (int i = 2; i * i <= d; i++) {
        if (d % i == 0) {
            h.push_back(i);
            while (d % i == 0) d /= i;       
        }
    }
    if (d != 1) h.push_back(d);

    // std::cout << "\n-----------0----------\n";
    // for (auto it : h) {
    //     std::cout << it << ' ';
    // }
    // std::cout << "\n-----------1----------\n";

    auto dfs = [&](auto &dfs, int na, int nb) -> int {
        if (na == 1 || nb == 1) {
            return 0;
        }
        if (mp.count({na, nb})) {
            return mp[{na, nb}];
        }
        int ans = 1e9;
        for (auto p : h) {
            if (abs(na - nb) % p) continue;
            int la = na - na % p, lb = nb - nb % p, ld = abs(la - na);
            int ra = la + p, rb = lb + p, rd = abs(ra - na);
            ans = std::min(ld + dfs(dfs, la / p, lb / p) + 1, ans);
            ans = std::min(rd + dfs(dfs, ra / p, rb / p) + 1, ans);
        }
        mp[{na, nb}] = ans;
        return ans;
    };

    std::cout << dfs(dfs, a, b) << '\n';
}   

signed main() {
    cin.tie(0)->ios::sync_with_stdio(false);
    int T = 1;
    cin >> T; cin.get();

    int Case = 0;
    while (++Case <= T) {
        solve(Case);
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3840kb

input:

5
4 7
9 8
32 84
11 35
2 1

output:

2
7
5
4
0

result:

ok 5 number(s): "2 7 5 4 0"

Test #2:

score: -100
Wrong Answer
time: 648ms
memory: 24308kb

input:

300
223528529 446621399
755625805 978718675
257717538 480810408
277875777 54782907
963091558 739998688
282469431 505562301
38752451 261845321
474429597 697522467
67026335 290119205
874629705 651536835
301964126 78871256
316864911 93772041
545942587 322849717
640801578 417708708
683070559 906163429
9...

output:

12
1000000000
15
17
1000000000
17
13
1000000000
15
1000000000
15
16
18
20
1000000000
1000000000
16
18
15
1000000000
1000000000
1000000000
19
17
17
1000000000
17
13
1000000000
16
13
1000000000
21
1000000000
13
1000000000
1000000000
18
16
15
14
1000000000
14
24
15
14
1000000000
1000000000
1000000000
1...

result:

wrong answer 2nd numbers differ - expected: '19', found: '1000000000'