HDU 3501 Calculation 2 (尤拉函式應用)
Calculation 2
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2989 Accepted Submission(s): 1234
Total Submission(s): 2989 Accepted Submission(s): 1234
Given a positive integer N, your task is to calculate the sum of the positive integers less than N which are not coprime to N. A is said to be coprime to B if A, B share no common positive divisors except
1.
For each test case, there is a line containing a positive integer N(1 ≤ N ≤ 1000000000). A line containing a single 0 follows the last test case.
For each test case, you should print the sum module 1000000007 in a line.
3
4
0
0
2
GTmac
題目連結:http://acm.hdu.edu.cn/showproblem.php?pid=3501
題目大意:求小於n的與n不互質的數的和
題目分析:考慮到小於n的與n互質的數的和很好求,再用總和減掉即可,小於n的與n互質的數的和等於n*phi[n] / 2,phi[n]為n對應的尤拉函式值,證明如下:
設gcd(n, i) == 1,則有gcd(n, n - i) == 1
這裡可以反證:假設存在一個k != 1,gcd(n, n - i) == k,則有n%k == 0且(n - i) % k == 0即(n % k - i % k) % k == 0,得到(i % k) % k == 0
因此i必然是k的倍數,所以gcd(n, i) == k,這與gcd(n, i) == 1衝突,因此對於gcd(n, i) == 1,有gcd(n, n - i) == 1,所以與n互質的兩對數相加為n,又與n互質的總個數為phi[n],注意這裡不會出現n == 2*i 的情況因為出了2,phi[i]都為偶數
所以小於n的與n互質的數的和等於n*phi[n] / 2,所以最後答案為(n * (n - 1) / 2 - n*phi[n] / 2) % MOD,求單個phi的複雜度為sqrt((n)
#include <cstdio>
#include <cmath>
#define ll long long
int const MOD = 1e9 + 7;
int phi(int x)
{
int res = x;
for(int i = 2; i * i <= x; i++)
{
if(x % i == 0)
{
res = res / i * (i - 1);
while(x % i == 0)
x /= i;
}
}
if(x > 1)
res = res / x * (x - 1);
return res;
}
int main()
{
int n;
while(scanf("%d", &n) != EOF && n)
{
ll sum = (ll) n * (n - 1) / 2;
ll copsum = (ll) n * phi(n) / 2;
ll ans = sum - copsum;
printf("%I64d\n", ans % MOD);
}
}
相關文章
- HDU3501 Calculation 2(尤拉函式推廣)函式
- HDU2588GCD(尤拉函式)GC函式
- HDU 4002Find the maximum(尤拉函式)函式
- HDU 1695-GCD(容斥原理+尤拉函式)GC函式
- 尤拉函式φ函式
- 4939 尤拉函式函式
- 尤拉函式入門函式
- 尤拉函式詳解函式
- poj 2478 尤拉函式函式
- 淺談尤拉函式函式
- HDU 4965 Fast Matrix Calculation(矩陣快速冪)AST矩陣
- 尤拉函式性質和模版函式
- 轉載:尤拉函式知識點總結及程式碼模板及尤拉函式表函式
- Note -「因數的尤拉函式求和」函式
- bzoj2818: Gcd(尤拉函式)GC函式
- POJ 2478-Farey Sequence(尤拉函式)函式
- B.日記和尤拉函式函式
- 尤拉計劃512題(冪的尤拉總計函式和)函式
- SG 函式初步 HDU 1536 && HDU 1944函式
- POJ 2048 Longge's problem (尤拉函式 積性函式)函式
- HDU 4279 2012網路賽Number(數論 尤拉函式結論約數個數)函式
- POJ 2407-Relatives-尤拉函式函式
- gethostbyname函式和getservbyname函式的應用函式
- HDU 1709 The Balance(母函式)函式
- Hash函式及其應用函式
- Vue函式式元件的應用Vue函式元件
- 函式柯里化和偏函式應用函式
- HDU1729 Stone Game (SG函式)GAM函式
- Excel函式應用教程:函式的引數(轉)Excel函式
- [藍橋杯][演算法提高VIP]尤拉函式演算法函式
- 51nod1262 扔球(尤拉函式)函式
- 尤拉函式、整除分塊和擴充套件歐幾里得函式套件
- §3. 復變數的指數函式·尤拉公式變數函式公式
- Java 函式式介面 lamada 應用Java函式
- Generator函式非同步應用函式非同步
- 函式計算——應用初探函式
- 函式進階應用3函式
- HDU4965Fast Matrix Calculation(2014多校第九場)AST