题解 P1857 【质数取石子】
题目链接:Link
Problem
Solution
计算一下质数的数量,发现可以直接套SG函数。当计算出SG函数值后,分必胜和必败两种情况计算步数即可。
Code
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=20005;
int n,a,p[maxn],cnt,v[maxn],sg[maxn],step[maxn];
int main()
{
#ifdef local
freopen("pro.in","r",stdin);
#endif
scanf("%d",&n);
for(int i=2;i<maxn;i++) v[i]=i;
for(int i=2;i<maxn;i++)
{
if(v[i]==i) { p[cnt++]=i; }
for(int j=0;j<cnt&&p[j]*i<maxn&&p[j]<=v[i];j++) v[p[j]*i]=p[j];
}
for(int i=2;i<maxn;i++)
{
for(int j=0;j<cnt&&p[j]<=i;j++) if(sg[i-p[j]]==0) sg[i]=1;
if(sg[i]==0) for(int j=0;j<cnt&&p[j]<=i;j++) step[i]=max(step[i-p[j]]+1,step[i]);
else
{
for(int j=0;j<cnt&&p[j]<=i;j++) if(sg[i-p[j]]==0)
{
if(step[i]==0) step[i]=step[i-p[j]]+1;
else step[i]=min(step[i],step[i-p[j]]+1);
}
}
}
for(int i=1;i<=n;i++)
{
scanf("%d",&a);
printf("%d\n",sg[a]?step[a]:-1);
}
return 0;
}
本作品由happyZYM采用知识共享 署名-非商业性使用-相同方式共享 4.0 (CC BY-NC-SA 4.0) 国际许可协议(镜像(简单版)镜像(完整版))进行许可。
转载请注明出处:https://www.cnblogs.com/happyZYM/p/11728610.html (近乎)全文转载而非引用的请在文首添加出处链接。