HDU 2582 f(n) (組合數的gcd)
f(n)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 365 Accepted Submission(s): 221
Problem Description
This time I need you to calculate the f(n) . (3<=n<=1000000)
f(n)= Gcd(3)+Gcd(4)+…+Gcd(i)+…+Gcd(n).
Gcd(n)=gcd(C[n][1],C[n][2],……,C[n][n-1])
C[n][k] means the number of way to choose k things from n some things.
gcd(a,b) means the greatest common divisor of a and b.
f(n)= Gcd(3)+Gcd(4)+…+Gcd(i)+…+Gcd(n).
Gcd(n)=gcd(C[n][1],C[n][2],……,C[n][n-1])
C[n][k] means the number of way to choose k things from n some things.
gcd(a,b) means the greatest common divisor of a and b.
There are several test case. For each test case:One integer n(3<=n<=1000000). The end of the in put file is EOF.
For each test case:
The output consists of one line with one integer f(n).
The output consists of one line with one integer f(n).
3
26983
3
37556486
題目連結:http://acm.hdu.edu.cn/showproblem.php?pid=2582
題目大意:求f(n)= Gcd(3)+Gcd(4)+…+Gcd(i)+…+Gcd(n),Gcd(n)=gcd(C[n][1],C[n][2],……,C[n][n-1])
題目分析:顯然若n有兩個以上的素因子則Gcd(n) = 1,若n=p^k則Gcd(n) = p,O(n)素數篩 + O(20 * primenum)處理p^k的數,預處理複雜度為O(n),查詢直接O(1)
#include <cstdio>
#define ll long long
int const MAX = 1e6 + 5;
int p[MAX];
bool noprime[MAX];
ll num[MAX], ans[MAX];
void pre()
{
int pnum = 0;
for(int i = 2; i < MAX; i++)
{
num[i] = 1;
if(!noprime[i])
p[pnum ++] = i;
for(int j = 0; j < pnum && i * p[j] < MAX; j++)
{
noprime[i * p[j]] = true;
if(i % p[j] == 0)
break;
}
}
for(int i = 0; i < pnum; i++)
{
ll tmp = 1;
for(int j = 0; j <= 20; j++)
{
tmp = tmp * p[i];
if(tmp > MAX)
break;
num[tmp] = p[i];
}
}
for(int i = 3; i < MAX; i++)
ans[i] = ans[i - 1] + num[i];
}
int main()
{
pre();
int n;
while(scanf("%d", &n) != EOF)
printf("%lld\n", ans[n]);
}
相關文章
- HDU 2068 RPG的錯排 (錯排+組合數)
- hdu 5698 瞬間移動 【質因數分解求組合數】
- 組合數學與一元n次方
- 【dp+組合數學】hdu 2018 多校第九場 1001 Rikka with Nash Equilibrium hdu 6415UI
- 函式組合的 N 種模式函式模式
- HDU 1792 - A New Change Problem(規律,最大不能組合數及其個數)
- HDU - 6736 F - Forest ProgramREST
- 編寫程式實現 f(n)=f(n-1)+f(n-2) (f(1)=1 和 f(2)=2 )函式。函式
- HDU-1792-( 兩個互質的數線性組合最大不能表示的數和不能表示數的個數)
- 【數學】組合數學 - 排列組合
- HDU - 2553 N皇后問題(DFS)
- 分數的GCD和LCMGC
- 組合數的逆元求法
- 組合數學
- 組合數學筆記-排列與組合筆記
- 楊輝三角(組合數)+排列組合
- 組合數問題
- 組合數字首和
- lg組合計數
- 統計整數區間[N,M](N,M<100000)中所以非偶數的合數個數,並輸出這個數。
- MySQL 分組排序後 → 如何取前N條或倒數N條MySql排序
- 【數學】組合數學 - 卡特蘭數
- 《小 學 組 合 數 學》
- 20240820:組合計數(2)
- 【組合數學】組合數學簡介 ( 組合思想 2 : 數學歸納法 | 數學歸納法推廣 | 多重歸納思想 )
- 【POJ 2249】 Binomial Showdown 組合數學 排列組合計算
- GCD Inside: GCD 宏GCIDE
- 組合數取模的幾種方法--Exlucas&楊輝三角&組合
- 奇怪的GCDGC
- 不學無數——組合模式模式
- 組合計數思維題
- 2024.4.6 組合數學補題
- CF938E-組合數
- 組合數學 XKerror 筆記Error筆記
- 組合數輸出題解
- HDU 6415 (計數dp)
- hdu2084數塔
- 組合數學筆記-特殊計數數列筆記
- 15.7 冪級數在組合數學中的應用