QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#497684 | #6440. Xingqiu's Joke | pagohia | WA | 0ms | 3632kb | C++14 | 1.2kb | 2024-07-29 15:57:42 | 2024-07-29 15:57:44 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N = 305;
typedef long long ll;
typedef double db;
typedef pair<int, int>pii;
typedef pair<long, long>pll;
int n, x, y;
int minn = 0x3ffff;
long long arr[N];
int nowx, nowy;
int check(int a, int b)
{
if (a == 1 || b == 1) return 1;
else return 0;
}
bool isPrime(int num) {
if (num <= 1)
return false;
for (int i = 2; i * i <= num; ++i) {
if (num % i == 0)
return false;
}
return true;
}
int gcd(int a, int b) {
while (b != 0) {
int temp = a % b;
a = b;
b = temp;
}
return a;
}
void dfs(int a, int b, int step)
{
if (check(a, b))
{
minn = min(minn, step);
return;
}
if (step > minn)
{
return;
}
dfs(a - 1, b - 1, step + 1);
dfs(a + 1, b + 1, step + 1);
int gcdValue = gcd(a, b);
for (int i = 2; i <= gcdValue; ++i) {
if (gcdValue % i == 0 && isPrime(i))
dfs(a / i, b / i, step + 1);
}
}
void solve()
{
int a, b;
int step = 0;
cin >> a >> b;
if ( a == 1 || b == 1)
{
cout << 0 << endl;
return;
}
else if (a == b)
{
cout << a - 1 << endl;
return;
}
dfs(a, b, step);
cout << minn << endl;
}
int main()
{
int tcase;
cin >> tcase;
while (tcase--)
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3632kb
input:
5 4 7 9 8 32 84 11 35 2 1
output:
2 2 2 2 0
result:
wrong answer 2nd numbers differ - expected: '7', found: '2'