#include<iostream>
#include<algorithm>
using namespace std;
const int N = 20;
typedef long long LL;
int n,m;
int p[N];
int main()
{
cin>>n>>m;
for(int i = 0;i < m;i ++) cin>>p[i];
int res = 0;
//从1枚举到2^m(位运算)
for(int i = 1;i < 1 << m; i ++){
//t表示当前质数的乘积
//cnt表示当前选法中有几个集合
int t = 1,cnt = 0;
for(int j = 0;j < m;j ++)
{
//当前位为1
if(i >> j & 1)
{
cnt ++;
if((LL)t * p[j] > n)
{
t = -1;
break;
}
t *= p[j];
}
}
if(t != -1)
{
//奇数为加,偶数则减
if(cnt % 2) res += n / t;
else res -= n / t;
}
}
cout<<res<<endl;
return 0;
}
二、简单博弈论
先手必胜状态:可以走到某一必败状态(Yes)
先手必败状态:走不到任何一个必败状态(No)
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int n;
in res = 0;
scanf("%d",&n);
while(n --)
{
int x;
scanf("%d",&x);
//异或
res ^= x;
}
if(res) puts("Yes");
else puts("No");
return 0;
}
calculus
微积分教会我为什么椭圆的面积 π \pi πab. 隐函数求导Rule
如何理解Lagrange求函数极值?
万物可积(所有的函数都能找到原函数?)——数即宇宙
线性代数 It’s doubtless that Gitmind&Blog is best place for taking note…