题目链接:codeforces1445C Division
题解
分类讨论:
- 当 时,显然答案是 ;
- 当 时,如果 ,显然答案是 ;
- 当 时,且 ,想到唯一分解定理,把 , 拆成若干的素数相乘,当 减少若干个 的质因子,满足不能被 整除时即可得到我们要的答案。观察到 比较小,所以去找 的质因子。
参考代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| #include <iostream> #include <vector> #include <cmath> using namespace std; typedef long long ll; int main() { int t; cin >> t; while (t--) { ll p, q; cin >> p >> q; if (p < q) cout << p << endl; else { if (p % q != 0) { cout << p << endl; } else { vector<ll> v; ll x = sqrt(q); ll tmp = q, ans = -1; for (int i = 2; i <= x; i++) { if (tmp % i == 0) { v.push_back(i); while (tmp % i == 0) tmp /= i; } } if (tmp > 1) v.push_back(tmp); for (int i = 0; i < v.size(); i++) { tmp = p; while (tmp % q == 0) tmp /= v[i]; ans = max(ans, tmp); } cout << ans << endl; } } } }
|


yngcy
夕拾天星,曦携明露
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。