Lostborn(DP+数论)

Igor K. very much likes a multiplayer role playing game WineAge II. Who knows, perhaps, that might be the reason for his poor performance at the university. As any person who plays the game, he is interested in equipping his hero with as good weapon and outfit as possible.

One day, as he was reading the game's forum yet again, he discovered a very interesting fact. As it turns out, each weapon in the game is characterised with k different numbers: a1,...,ak. They are called hit indicators and according to the game developers' plan they are pairwise coprime.

The damage that is inflicted during a hit depends not only on the weapon's characteristics, but also on the hero's strength parameter. Thus, if the hero's strength equals n, than the inflicted damage will be calculated as the number of numbers on the segment , that aren't divisible by any hit indicator ai.

Recently, having fulfilled another quest, Igor K. found a new Lostborn sword. He wants to know how much damage he will inflict upon his enemies if he uses it.

Input

The first line contains two integers: n and k (1≤n≤1013, 1≤k≤100). They are the indicator of Igor K's hero's strength and the number of hit indicators.

The next line contains space-separated k integers ai (1≤ai≤1000). They are Lostborn sword's hit indicators. The given k numbers are pairwise coprime.

Output

Print the single number − the damage that will be inflicted by Igor K.'s hero when he uses his new weapon.

Please, do not use the %lld specificator to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specificator.

Input

20 3
2 3 5

Output

6

Input

50 2
15 8

Output

41

题目大意:

Description

问区间[1,n][1,n]中不能被a1,...,aka1,...,ak整除的数字个数

Input

第一行两个整数n,kn,k,之后输入kk个整数a1,...,aka1,...,ak(1≤n≤1013,1≤k≤100,1≤ai≤1000)(1≤n≤1013,1≤k≤100,1≤ai≤1000)

Output

输出满足条件的数字个数

DP思路:

https://blog.csdn.net/V5ZSQ/article/details/81063313

AC代码:

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
const int maxn=200000;
ll n;
int k;
ll str[105];
int dp[105][maxn];
ll ans(ll a,ll b)
{
    if(a>k || b==0)
    {
        return b;
    }
    if(b<=maxn && dp[a][b]!=-1)
    {
        return dp[a][b];
    }
    ll sum=ans(a+1,b)-ans(a+1,b/str[a]);
    if(b<=maxn)
    {
        dp[a][b]=sum;
    }
    return sum;
}
bool cmp(ll x,ll y)
{
    return x>y;
}
int main()
{
    while(~scanf("%lld %d",&n,&k))
    {
        memset(dp,-1,sizeof(dp));
        for(int i=1;i<=k;i++)
        {
           scanf("%lld",&str[i]);
        }
        sort(str+1,str+n+1,cmp);
        printf("%lld\n",ans(1,n));
    }
}

猜你喜欢

转载自blog.csdn.net/qq1013459920/article/details/81561705