LOJ 1341 Aladdin and the Flying Carpet(质因子分解)

题目链接:http://lightoj.com/volume_showproblem.php?problem=1341

题意:给两个数a,b,求满足c * d = a且c>=b且d>=b的c, d二元组对数,(c, d)和(d, c)属于同一种情况。

思路:根据唯一分解定理,先将a唯一分解,则a的所有正约数的个数为num = (1 + a1) * (1 + a2) *...* (1 + ai),这里的ai是素因子的指数。现在我们知道了a的因子个数为num,假设因子从小到大排列为

X1,X2,...,Xnum 因为是求二元组,所以num先除以2,然后减去那些比b小的因子即可(比b小的一定和比较大的组合,所以不用考虑很大的情况)。

code:

 1 #include <cstdio>
 2 #include <cstring>
 3 using namespace std;
 4
 5 typedef long long LL;
 6 const int MAXN = 1000000;
 7
 8 int prime[MAXN + 1];
 9
10 void getPrime()
11 {
12     memset(prime, 0, sizeof(prime));
13     for (int i = 2; i <= MAXN; ++i) {
14         if (!prime[i]) prime[++prime[0]] = i;
15         for (int j = 1; j <= prime[0] && prime[j] <= MAXN / i; ++j) {
16             prime[prime[j] * i] = 1;
17             if (i % prime[j] == 0) break;
18         }
19     }
20 }
21
22 LL factor[1000][2];
23 int fatCnt;
24
25 int getFactors(LL x)
26 {
27     fatCnt = 0;
28     LL tmp = x;
29     for (int i = 1; i <= prime[0] && prime[i] * prime[i] <= tmp; ++i) {
30         factor[fatCnt][1] = 0;
31         if (tmp % prime[i] == 0) {
32             factor[fatCnt][0] = prime[i];
33             while (tmp % prime[i] == 0) {
34                 ++factor[fatCnt][1];
35                 tmp /= prime[i];
36             }
37             ++fatCnt;
38         }
39     }
40     if (tmp != 1) {
41         factor[fatCnt][0] = tmp;
42         factor[fatCnt++][1] = 1;
43     }
44     LL ret = 1;
45     for (int i = 0; i < fatCnt; ++i) {
46         ret *= (1L + factor[i][1]);
47     }
48     return ret;
49 }
50
51 int main()
52 {
53     getPrime();
54     int nCase;
55     scanf("%d", &nCase);
56     for (int cnt = 1; cnt <= nCase; ++cnt) {
57         LL a, b;
58         scanf("%lld %lld", &a, &b);
59         if (b * b > a) {
60             printf("Case %d: 0\n", cnt);
61             continue;
62         }
63         LL num = getFactors(a);
64         num /= 2;
65         for (int i = 1; i < b; ++i) {
66             if (a % i == 0) --num;
67         }
68         printf("Case %d: %lld\n", cnt, num);
69     }
70     return 0;
71 }
时间: 2024-11-08 14:23:26

LOJ 1341 Aladdin and the Flying Carpet(质因子分解)的相关文章

LightOJ 1341 - Aladdin and the Flying Carpet 基本因子分解

http://www.lightoj.com/volume_showproblem.php?problem=1341 题意:给你长方形的面积a,边最小为b,问有几种情况. 思路:对a进行素因子分解,再乘法原理算一下,最后减去小于b的因子的情况即可. /** @Date : 2016-12-01-19.04 * @Author : Lweleth ([email protected]) * @Link : https://github.com/ * @Version : */ #include<b

LightOJ 1341 - Aladdin and the Flying Carpet (唯一分解定理 + 素数筛选)

http://lightoj.com/volume_showproblem.php?problem=1341 Aladdin and the Flying Carpet Time Limit:3000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu Submit Status Practice LightOJ 1341 Description It's said that Aladdin had to solve seven

LightOJ 1341 - Aladdin and the Flying Carpet(算术基本定理啊)

题目链接:http://lightoj.com/volume_showproblem.php?problem=1341 It's said that Aladdin had to solve seven mysteries before getting the Magical Lamp which summons a powerful Genie. Here we are concerned about the first mystery. Aladdin was about to enter

Light OJ 1341 Aladdin and the Flying Carpet

It's said that Aladdin had to solve seven mysteries before getting the Magical Lamp which summons a powerful Genie. Here we are concerned about the first mystery. Aladdin was about to enter to a magical cave, led by the evil sorcerer who disguised hi

LightOJ 1341(Aladdin and the Flying Carpet )算术基本定理

It's said that Aladdin had to solve seven mysteries before getting the Magical Lamp which summons a powerful Genie. Here we are concerned about the first mystery. Aladdin was about to enter to a magical cave, led by the evil sorcerer who disguised hi

1341 - Aladdin and the Flying Carpet ---light oj (唯一分解定理+素数筛选)

http://lightoj.com/volume_showproblem.php?problem=1341 题目大意: 给你矩形的面积(矩形的边长都是正整数),让你求最小的边大于等于b的矩形的个数. 什么叫唯一分解定理:算术基本定理可表述为:任何一个大于1的自然数 N,如果N不为质数,那么N可以唯一分解成有限个质数的乘积N=P1a1P2a2P3a3......Pnan,这里P1<P2<P3......<Pn均为质数,其中指数ai是正整数.这样的分解称为 N 的标准分解式 我们求出n的因

LightOJ 1341 - Aladdin and the Flying Carpet【合数分解】

题目链接:http://lightoj.com/volume_showproblem.php?problem=1341 题意: 给出整数 a 和 b ,求区间[b, a] 内的 a 的约数对的个数,a 的约数对(比如[2, 3] 与 [3, 2] 为同一对). 解法: 主要利用公式: 一个整数n可以表示为若干素数乘积: n = p1^a1 * p2^a2*-*pm^am; 则 n 的正因数的个数可以表示为: num = (a1+1)*(a2+1)-(am+1); 代码: #include <st

LightOJ 1341 Aladdin and the Flying Carpet(唯一分解定理)

http://lightoj.com/volume_showproblem.php?problem=1341 题意:给你矩形的面积(矩形的边长都是正整数),让你求最小的边大于等于b的矩形的个数. 思路:根据唯一分解定理,把X写成若干素数相乘的形式,则X的正因数的个数为:(1+a1)(1+a2)(1+a3)...(1+an).(ai为指数) 因为这道题目是求矩形,所以知道一个正因数后,另一个正因数也就确定了,所以每组正因数重复计算了两遍,需要除以2. 最后减去小于b的因数. 1 #include<

[LightOJ 1341] Aladdin and the Flying Carpet (算数基本定理(唯一分解定理))

题目链接: https://vjudge.net/problem/LightOJ-1341 题目描述: 问有几种边长为整数的矩形面积等于a,且矩形的短边不小于b 算数基本定理的知识点:https://baike.baidu.com/item/%E7%AE%97%E6%9C%AF%E5%9F%BA%E6%9C%AC%E5%AE%9A%E7%90%86/10920095?fr=aladdin 1 #include<cstdio> 2 #include<vector> 3 #includ