C:
求n!的因子个数
思路:枚举1-n的每个因子,使用唯一分解定理,计算因子个数
This is the code:
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<iostream>
#include<iomanip>
#include<list>
#include<map>
#include<queue>
#include<sstream>
#include<stack>
#include<string>
#include<set>
#include<vector>
using namespace std;
#define PI acos(-1.0)
#define pppp cout<<endl;
#define EPS 1e-8
#define LL long long
#define ULL unsigned long long //1844674407370955161
#define INT_INF 0x3f3f3f3f //1061109567
#define LL_INF 0x3f3f3f3f3f3f3f3f //4557430888798830399
// ios::sync_with_stdio(false);
// 那么cin, 就不能跟C的 scanf,sscanf, getchar, fgets之类的一起使用了。
const int dr[]= {0, 0, -1, 1, -1, -1, 1, 1};
const int dc[]= {-1, 1, 0, 0, -1, 1, -1, 1};
int read()//输入外挂
{
int ret=0, flag=0;
char ch;
if((ch=getchar())=='-')
flag=1;
else if(ch>='0'&&ch<='9')
ret = ch - '0';
while((ch=getchar())>='0'&&ch<='9')
ret=ret*10+(ch-'0');
return flag ? -ret : ret;
}
const LL mod = 1e9+7;
int p[1005], c[1005];
const LL N =1e6+10;
LL prime[N];
LL num_prime=0; //prime存放着小于N的素数
int is_not_prime[N]; // is_not_prime[i]如果i不是素数,则为1
int Prime()
{
is_not_prime[0]=1;
is_not_prime[1]=1;
for(LL i=2 ; i<N ; i ++)
{
if(!is_not_prime[i])
prime[num_prime++]=i;
for(LL j = 0 ; j<num_prime && i*prime[j]<N ; j ++)
{
is_not_prime[i*prime[j]]=1;
if(!(i%prime[j]))
break;
}
}
return 0;
}
set<int> sett;
void Dec(LL x)
{
for(int i=0; prime[i]*prime[i]<=x&&i<num_prime; i++)
{
if(x%prime[i]==0)
{
int num=0;
while(x%prime[i]==0)
{
num++;
x/=prime[i];
}
sett.insert(prime[i]);
c[prime[i]]+=num;
}
}
if(x>1)
{
sett.insert(x);
c[x]+=1;
}
}
int main()
{
Prime();
LL n;
scanf("%lld",&n);
for(int i=2; i<=n; i++)
Dec(i);
LL ans=1;
set<int>::iterator it;
for(it=sett.begin(); it!=sett.end(); it++)
ans=(ans%mod*(c[*it]+1)%mod)%mod;
printf("%lld\n",ans);
return 0;
}
D:
有N个城市。城市坐标按从西到东递增,x[i]。
移动的方法有以下两种:
一,在直线上按东西方向平移,每移动一个单位距离疲劳值加A
二,直接瞬移到某个坐标,并且疲劳值加B
请使用以上两种方式直到去完其他所有的城市,并求出最小的疲劳值。
直接贪心吧
This is the code:
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<iostream>
#include<iomanip>
#include<list>
#include<map>
#include<queue>
#include<sstream>
#include<stack>
#include<string>
#include<set>
#include<vector>
using namespace std;
#define PI acos(-1.0)
#define pppp cout<<endl;
#define EPS 1e-8
#define LL long long
#define ULL unsigned long long //1844674407370955161
#define INT_INF 0x3f3f3f3f //1061109567
#define LL_INF 0x3f3f3f3f3f3f3f3f //4557430888798830399
// ios::sync_with_stdio(false);
// 那么cin, 就不能跟C的 scanf,sscanf, getchar, fgets之类的一起使用了。
const int dr[]= {0, 0, -1, 1, -1, -1, 1, 1};
const int dc[]= {-1, 1, 0, 0, -1, 1, -1, 1};
int read()//输入外挂
{
int ret=0, flag=0;
char ch;
if((ch=getchar())=='-')
flag=1;
else if(ch>='0'&&ch<='9')
ret = ch - '0';
while((ch=getchar())>='0'&&ch<='9')
ret=ret*10+(ch-'0');
return flag ? -ret : ret;
}
int main()
{
LL n;
LL a,b;
scanf("%lld%lld%lld",&n,&a,&b);
LL tem;
LL sum=0;
cin>>tem;
for(int i=2; i<=n; i++)
{
LL x;
scanf("%lld",&x);
sum+=min((x-tem)*a,b);
tem=x;
}
printf("%lld\n",sum);
return 0;
}