记录编号 |
264007 |
评测结果 |
AAAAA |
题目名称 |
[HAOI 2004模拟]数列问题 |
最终得分 |
100 |
用户昵称 |
粘粘自喜 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.387 s |
提交时间 |
2016-05-26 21:56:27 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int N;
bool vis[1000];
int arr[1000];
int cir=0;
long long pow_mod(long long a,long long i,long long n){
if(i==0) return 1%n;
long long temp=pow_mod(a,i>>1,n);
temp=temp*temp%n;
if(i&1) temp=temp*a%n;
return temp;
}
bool test(long long n,long long a,long long d){
if(n==2) return true;
if(n==a) return true;
if((n&1)==0) return false;
while((d&1)==0) d=d>>1;
long long t=pow_mod(a,d,n);
while((d!=n-1)&&(t!=1)&&(t!=n-1)){
t=(t*t)%n;
d=d<<1;
}
if(t==n-1) return true;
if((d&1)==1) return true;
}
bool isprime(long long n){
if(n<2) return false;
int a[]={2, 3, 7, 61, 24251};
for(int i=0;i<=4;i++) if(!test(n,a[i],n-1)) return false;
return true;
}
int a[100];
void dfs(int cur)
{
if(cur==N)
{
for(int i=0;i<N;i++)
printf("%d ",a[i]);
printf("\n");
cir++;
}
for(int i=1;i<=N;++i)
{
if(isprime(a[cur-1]+i)&&!vis[i]||cur==0)
{
a[cur]=i;
vis[i]=true;
dfs(cur+1);
vis[i]=0;
}
}
}
int main()
{
freopen("dfs3.in","r",stdin);
freopen("dfs3.out","w",stdout);
cin>>N;
dfs(0);
cout<<cir;
return 0;
}