牛客多校第四场 B Basic Gcd Problem 题解

题目大意

定义函数$\large f_c(x) = max(1->x-1) c·f_c(gcd(i,x)) \quad x > 1$

$\large f_c(x) = 1 \quad x=1$。

求$\large f_c(n)$。

解题思路

很明显,答案肯定是$c^n$,所以我们需要使这个n尽可能的大。

由于质数与其他数的gcd都是1,所以我们不需要考虑质数。

那么对于其他的数来说,我们可以将他们分解成质因数相乘,每一个质因数就是相当于乘以一个c。

那么答案就只需要统计其质因数的数量然后用快速幂即可。

(我统计的时候乘就TLE了。。乘这么慢的吗。。

完整代码

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
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <bits/stdc++.h>
#include <iostream>
#include <queue>
#include <cstring>
#include <string>
#include <cmath>
#include <stack>
#include <map>
#include <unordered_map>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;

const int N = 1e6 + 5, mod = 1e9 + 7;
int num[N];

ll qpow(ll a,ll b){
ll ans = 1;
while(b){
if(b&1) ans = ans*a%mod;
a = a*a%mod,b>>=1;
}
return ans;
}

ll slove(int a) {
ll ans = 0;
for (int i = 2; i*i <= a; i++) {
while (a % i == 0) {
ans++;
a /= i;
}
}
if(a>1) ans++;
return ans;
}

int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int t;
cin >> t;
while (t--) {
int n, c;
cin >> n >> c;
cout << qpow((ll)c,slove(n)) << endl;
}
}
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • © 2015-2021 sakurakarma
  • Powered by Hexo Theme Ayer
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信