Co-prime

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4090    Accepted Submission(s): 1619

Problem Description
Given a number N, you are asked to count the number of integers between A and B inclusive which are relatively prime to N.
Two integers are said to be co-prime or relatively prime if they have no common positive divisors other than 1 or, equivalently, if their greatest common divisor is 1. The number 1 is relatively prime to every integer.
 
Input
The first line on input contains T (0 < T <= 100) the number of test cases, each of the next T lines contains three integers A, B, N where (1 <= A <= B <= 1015) and (1 <=N <= 109).
 
Output
For each test case, print the number of integers between A and B inclusive which are relatively prime to N. Follow the output format below.
 
Sample Input
2
1 10 2
3 15 5
 
Sample Output
Case #1: 5
Case #2: 10
 
思路:求1~m中与n互素的数的个数。
#include <cstdio>
#include <vector>
using namespace std;
typedef long long LL;
LL sieve(LL m,LL n)
{
vector<LL> divisor;
for(LL i=;i*i<=n;i++)
{
if(n%i==)
{
divisor.push_back(i);
while(n%i==) n/=i;
}
}
if(n>) divisor.push_back(n);
LL ans=;
for(LL mark=;mark<(<<divisor.size());mark++)
{
LL odd=;
LL mul=;
for(LL i=;i<divisor.size();i++)
{
if(mark&(<<i))
{
mul*=divisor[i];
odd++;
}
}
LL cnt=m/mul;
if(odd&) ans+=cnt;
else ans-=cnt;
}
return m-ans;
}
LL a,b,n;
int main()
{
int T;
scanf("%d",&T);
for(int cas=;cas<=T;cas++)
{
scanf("%lld%lld%lld",&a,&b,&n);
LL res=sieve(b,n)-sieve(a-,n);
printf("Case #%d: ",cas);
printf("%lld\n",res);
}
return ;
}

最新文章

  1. webpack的配置
  2. 友盟SDK实现分享
  3. mongo学习笔记(一):增删改查
  4. linux numfmt 命令--转换数字
  5. Linux基础入门(20135207 王国伊)
  6. The insertion sort algorithm expressed in pseudocode - 插入排序
  7. An Easy C Program Problem
  8. VS2015中的项目类图
  9. 程序猿想聊天 - 創問 4C 團隊教練心得(二)
  10. 《我们不一样》Alpha冲刺_1-5
  11. AspectJ用注解替换xml配置
  12. LAMP架构(二)
  13. luogu1600 [NOIp2016]天天爱跑步 (tarjanLca+dfs)
  14. Java如何实现跨平台
  15. Linux 下查看局域网内所有主机IP和MAC
  16. linux下开启某个端口的方法:可用于SQL
  17. yyyy-MM-dd 转换为年月日
  18. 第一章-Javac编译器介绍
  19. beta 圆桌 7
  20. Excel2013 破解(编辑工作表受保护)密码

热门文章

  1. JavaWeb Cookie
  2. CentOS 7 导入epel库
  3. 服务器windows 2003 安装SQL 2000+SP4
  4. Python面向对象编程高级特性
  5. springcloud一些概念知识
  6. Codeforces Round #367 (Div. 2) D. Vasiliy&#39;s Multiset trie树
  7. ROS创建工作空间
  8. dom 兼容性问题1_节点部分
  9. 《RocketMQ 安装和使用》
  10. Redis源码研究:哈希表 - 蕫的博客