博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LightOJ 1236 Pairs Forming LCM(算术基本定理)
阅读量:5272 次
发布时间:2019-06-14

本文共 2273 字,大约阅读时间需要 7 分钟。

 Pairs Forming LCM

Find the result of the following code:

long long pairsFormLCM( int n ) {

    long long res = 0;
    for( int i = 1; i <= n; i++ )
        for( int j = i; j <= n; j++ )
           if( lcm(i, j) == n ) res++; // lcm means least common multiple
    return res;
}

A straight forward implementation of the code may time out. If you analyze the code, you will find that the code actually counts the number of pairs (i, j) for which lcm(i, j) = n and (i ≤ j).

Input

Input starts with an integer T (≤ 200), denoting the number of test cases.

Each case starts with a line containing an integer n (1 ≤ n ≤ 1014).

Output

For each case, print the case number and the value returned by the function 'pairsFormLCM(n)'.

Sample Input

15

2

3

4

6

8

10

12

15

18

20

21

24

25

27

29

Sample Output

Case 1: 2

Case 2: 2

Case 3: 3

Case 4: 5

Case 5: 4

Case 6: 5

Case 7: 8

Case 8: 5

Case 9: 8

Case 10: 8

Case 11: 5

Case 12: 11

Case 13: 3

Case 14: 4

Case 15: 2

题意:给一个n,有( 1<=i <= j <= n),求所有lcm(i , j)=n,满足条件的i,j的对数。

题解:假设n= p1^a1 * p2^a2 * p3^a3...*pn-1^an-1*pn^an;

对于其中的一项pi^ai来说,选择的两个数之一必须包含它,另外一个随意。。也就是说。。Pi^ai放在第一个数,也可以放在第二个数。不包含pi^ai的那个数字有(ai+1)种方案,所以一共有2*ai+2种方案,但是两边都选ai的时候会重复,所以对于第i个素因子有ai*2 +1种方案。所以ans = (2*a1 + 1)*(2 * a2 + 1).....*(2 * an + 1);其中除了(n , n),其它所有的都被计算了两次。所以ans = (ans + 1)/2

代码:

#include
#include
#include
using namespace std;const int maxn = 1e7 + 10;typedef long long ll;bool is_not[maxn];int pri[maxn/10] , n;int tot;void init(){ memset(is_not,0,sizeof(is_not)); tot = 0; for(int i = 2; i < maxn;i++){ if(!is_not[i]) pri[tot++] = i; for(int j = 0 ; j < tot&&pri[j]*i < maxn;j++){ is_not[i * pri[j]] = 1; if(i%pri[j] == 0) break; } } }ll facor(ll n){ ll n1 = n; ll cot = 0; ll cnt = 1; for(int i = 0 ;pri[i] * pri[i] <= n;i++){ cot = 0; while(n%pri[i] == 0){ n/=pri[i]; cot++; } if(cot) cnt *= cot * 2 + 1; } if(n > 1) cnt *= 3; return (cnt + 1)>>1;}int main(){ init(); int t; scanf("%d",&t); for(int cas = 1; cas <= t;cas++) { scanf("%lld",&n); printf("Case %d: %lld\n",cas,facor(n)); }}
View Code

 

转载于:https://www.cnblogs.com/rtyfcvb/p/6624044.html

你可能感兴趣的文章
《TCP/IP 详解 卷一》读书笔记 -----第四章 ARP
查看>>
C# Stream 和 byte[] 之间的转换
查看>>
Cracking the code interview
查看>>
OMG: daily scrum nine
查看>>
redis与spring结合错误情况
查看>>
Vue.js的从入门到放弃进击录(二)
查看>>
第六章 字节码执行方式--解释执行和JIT
查看>>
Mesh属性[Unity]
查看>>
ajax与java后台交互
查看>>
面向对象之元类
查看>>
MySQL常用函数
查看>>
实现绘制图形的ToolBar
查看>>
C# 串口接收数据中serialPort.close()死锁
查看>>
Python3控制结构与函数
查看>>
字符串方法title()、istitle()
查看>>
yield语句
查看>>
java序列化问题
查看>>
Html.Partial和Html. RenderPartial用法
查看>>
查看linux系统中占用cpu最高的语句
查看>>
[洛谷P1738]洛谷的文件夹
查看>>