标签:
1 8 5 0
1 92 10
直接求会超时,打个表就不会了。。。
#include<iostream> #include<cstdio> #include<cstring> using namespace std; int a[20],ans,n,f[20]; void dfs(int cnt) { if(cnt==n) { ans++; return ; } for(int i=0;i<n;i++) { int ok=1; a[cnt]=i; for(int j=0;j<cnt;j++) { if(a[cnt]==a[j] || cnt-a[cnt]==j-a[j] || cnt+a[cnt]==j+a[j]) { ok=0; break; } } if(ok) dfs(cnt+1); } } int main() { int i,j; for(n=1;n<=11;n++) { ans=0; memset(a,0,sizeof(a)); dfs(0); f[n]=ans; } while(scanf("%d",&n)==1 &&n) { cout<<f[n]<<endl; } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/h1021456873/article/details/47812687