题意:

给n,m,和m个数(k1~km)。求1~n中有多少个数不是(k1~km)中任意一数的倍数。

题解:

容斥模板题。反面考虑,a的倍数有n/a个;既是a,也是b的倍数,即lcm(a,b)的倍数有n/lcm(a,b)个。是a,b,c的倍数,即lcm(a,b,c)的倍数有n/lcm(a,b,c)个。

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
typedef long long LL;
LL a[20],m;
LL n,ans; LL lcm(LL a,LL b)
{
return a/__gcd(a,b)*b;
} void dfs(int c,int cur,int i,LL ans1) //dfs(c,1,i,0,1);
{
if(cur==c+1)
{
if(c&1)
ans-=n/ans1;
else
ans+=n/ans1;
return;
}
for(;i<m;i++)
{
dfs(c,cur+1,i+1,lcm(ans1,a[i]));
}
} int main()
{
while(cin>>n>>m)
{
for(int i=0;i<m;i++)
scanf("%lld",&a[i]);
ans=n;
for(int c=1;c<=m;c++)
dfs(c,1,0,1);
printf("%lld\n",ans);
}
}

The Lottery

Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

Submit Status

The Sports Association of Bangladesh is in great problem with their latest lottery ‘Jodi laiga Jai’. There are so many participants this time that they cannot manage all the numbers. In an urgent meeting they have decided that they will ignore some numbers. But how they will choose those unlucky numbers!!! Mr. NondoDulal who is very interested about historic problems proposed a scheme to get free from this problem. You may be interested to know how he has got this scheme. Recently he has read the Joseph’s problem. There are N tickets which are numbered from 1 to N. Mr. Nondo will choose M random numbers and then he will select those numbers which is divisible by at least one of those M numbers. The numbers which are not divisible by any of those M numbers will be considered for the lottery. As you know each number is divisible by 1. So Mr. Nondo will never select 1 as one of those M numbers. Now given N, M and M random numbers, you have to find out the number of tickets which will be considered for the lottery.

Input

Each input set starts with two Integers N (10 ≤ N <2^31) and M (1 ≤ M ≤ 15). The next line will contain M positive integers each of which is not greater than N. Input is terminated by EOF.

Output

Just print in a line out of N tickets how many will be considered for the lottery.

Sample Input

10 2

2 3

20 2

2 4

Sample Output

3

10

最新文章

  1. Django models对象的select_related方法(减少查询次数)
  2. Apache service named reported the following error(OS 10055)由于系统缓冲区空间不足或队列已满解决办法?
  3. IOS开发之新浪围脖
  4. Windows Azure Service Bus (3) 队列(Queue) 使用VS2013开发Service Bus Queue
  5. 安卓学习-- RecyclerView简单入门
  6. C# ASP.NET 开发指引简要
  7. CSS基础知识学习笔记
  8. javad的Collection集合
  9. 在CentOS 7中轻松安装Atomic应用(atomicapp)
  10. 各邮箱服务器地址及端口&lt;转&gt;
  11. Spring源代码解析 ---- 循环依赖
  12. 201521123078《Java程序设计》第1周学习总结
  13. Hibernate注解配置与XML配置区别
  14. MacOS修改用户名后变为普通用户,无法创建管理员账号
  15. canvas-a13prototype.html
  16. 为什么react的组件要super(props)
  17. 解决 Ionic 浏览器跨域问题
  18. [转载]ArcGIS SERVER 9.3如何清除REST缓存
  19. JS funtion()中URL不跳转后台action问题
  20. Java面试题(原创)

热门文章

  1. 【Win10应用开发】签名与验证
  2. 坎坷路:ASP.NET 5 Identity 身份验证(上集)
  3. 用Github pages搭建自己制作的网页,方法最简单,适用于新手
  4. 基于 HTML5 的 Web SCADA 报表
  5. H5实现本地预览图片
  6. MAC终端命令行下用sublime、vscode、atom打开文件或目录
  7. 使用 NuGet 下载最新的 Rafy 框架及文档
  8. Spring中常见的bean创建异常
  9. source /etc/profile报错-bash: id:command is not found
  10. 使用visualvm远程监控JVM LINUX服务器配置方法