LightOJ Aladdin and the Flying Carpet 1341【算数基本定理+几何】

1341 - Aladdin and the Flying Carpet

PDF (English) Statistics Forum
Time Limit: 3 second(s) Memory Limit: 32 MB

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 himself as Aladdin‘s uncle, found a strange magical flying carpet at the entrance. There were some strange creatures guarding the entrance of
the cave. Aladdin could run, but he knew that there was a high chance of getting caught. So, he decided to use the magical flying carpet. The carpet was rectangular shaped, but not square shaped. Aladdin took the carpet and with the help of it he passed the
entrance.

Now you are given the area of the carpet and the length of the minimum possible side of the carpet, your task is to find how many types of carpets are possible. For example, the area of the carpet 12, and the minimum possible
side of the carpet is 2, then there can be two types of carpets and their sides are: {2, 6} and {3, 4}.

Input

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

Each case starts with a line containing two integers: a b (1 ≤ b ≤ a ≤ 1012) where a denotes the area of the carpet and b denotes the minimum possible side of the
carpet.

Output

For each case, print the case number and the number of possible carpets.

Sample Input

Output for Sample Input


2

10 2

12 2


Case 1: 1

Case 2: 2

题意:

给一对数字 a,b  ,a是一个长方形的面积,问有多少种整数的边的组合可以组成面积为a的长方形,要求最短的边不得小于b。

说白了,就是求区间[b, a] 内的 a 的约数对的个数。约数对就是【4,5】【5,4】这就是一对。救赎不考虑顺序。

解题思路:

主要利用算术基本定理,先介绍下算数基本定理几个性质:

(1)一个大于1的正整数N,如果它的标准分解式为:

,那么它的正因数个数为

(2) 它的全体正因数之和为

时就称N为完全数。 是否存在奇完全数,是一个至今未解决之猜想。

(3) 利用算术基本定理可以重新定义整数a和b的最大公因子

和最小公倍数

, 并证明

(4)此外还可证明根号2是无理数等等。

(5)证明素数个数无限。

这个题主要就是求正因子个数num,求出来之后num/2,然后在枚举1-b 中属于a正因子的数cnt, 用num-cnt就是我们最后要的结果。

在处理正因子的时候要注意。并且,在num除2的时候,我们会想到num为奇数的时候直接除2会不会出错?其实刚好,只有当有一个约数所形成的边是正方形的时候,num那一定是奇数,直接/2刚好减去了正方形的情况。

AC代码:

#include <stdio.h>
#include <math.h>
#include <vector>
#include <queue>
#include <string>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>

using namespace std;

const int MAXN = 1000000;
int prime[MAXN];
int is_prime[MAXN];
int tot;

typedef long long LL;

void find_prime()
{
    tot=0;
    is_prime[1]=1;
    for(int i=2;i<MAXN;i++){
        if(!is_prime[i]){
            prime[tot++]=i;
            for(int j=i*2;j<MAXN;j+=i) is_prime[j]=1;
        }
    }
}

LL solve(LL n)
{
    LL ans=1;
    for(int i=0;i<tot&&n;i++){
        LL num=0;
        if(prime[i]>n) break; //不加这个超时啊。。。
        while(n%prime[i]==0){
            n/=prime[i];
            num++;
        }
        ans*=(1+num);
    }
    if(n>1) ans*=(1+1);
    return ans;
}

int main()
{
    find_prime();
    LL s,b;
    int t;
    scanf("%d",&t);
    int xp=1;
    while(t--){
        scanf("%lld%lld",&s,&b);
        if(b*b>=s){
        	printf("Case %d: 0\n",xp++);
        	continue;
		}
		LL num=solve(s);
        num/=2;
        for(LL i=1;i<b;i++)
            if(s%i==0) num--;
        printf("Case %d: %lld\n",xp++,num);
    }
    return 0;
}

版权声明:本文为博主原创文章,转载请注明出处。

时间: 2024-11-09 09:39:48

LightOJ Aladdin and the Flying Carpet 1341【算数基本定理+几何】的相关文章

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

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

LightOJ1341 Aladdin and the Flying Carpet 约数相关问题

LightOJ1341 Aladdin and the Flying Carpet 标签 约数相关问题 前言 我的csdn和博客园是同步的,欢迎来访danzh-博客园~ 简明题意 给定n,b,求n的>=b的约数的对数.(n<=1e12) 思路 n的约数对数=\(d(n)/2\),这个应该是很显然的.如果n是完全平方数那么这个式子不对,但是题目说了只用找矩形而不用找正方形,因此不需要考虑n是完全平方数的情况. n的约数对数求出来了,但是题目要求>=b的约数对数,怎么搞呢?这里我也想了半天没

C - Aladdin and the Flying Carpet (质因子分解,因子个数)

C - Aladdin and the Flying Carpet 题目链接:https://vjudge.net/problem/LightOJ-1341#author=2018112767 题目大意: 给一对数字 a,b .其中,a表示一个矩形的面积,想知道有多少种整数的边的组合可以组成面积为a的矩形,而且要求矩形的最短的边不得小于b. 解题思路: 先算出a的因子数,然后由公式因子个数num=(q1+1)*(q2+1)......*(qn+1).求出num后再除以2,得到的就是所有面积等于a

[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

LightOJ 1341 Aladdin and the Flying Carpet 算数基本定理

题目大意:给出面积n,和最短边m,求能形成的矩形的个数(不能为正方形). 题目思路:根据算数基本定理有: 1.每个数n都能被分解为:n=p1^a1*p2^a2*^p3^a3……pn^an(p为素数); 2.n的正因数的个数sum为:sum=(1+a1)*(1+a2)*(1+a3)……(1+an); 最短边为m,若m>=sqrt(n),则无解.所以m最多我10^6,可遍历找出1-m中n的因子,并用sum去减去这类因子的个数. ps:最近一直想去证明算数基本定理,可是感觉能力不够,唉,慢慢来吧. #

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

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

E - 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