shu_p64 n后问题

http://acmoj.shu.edu.cn/openjudge-edu/viewproblem.php?coll_id=1&prob_id=64

分析: 深搜,约束函数的简化


代码:

//shup64 n queens   
#include <stdio.h>   
#include <iostream>   
#include <string.h>   
#include <cmath>   
using namespace std;   
#define M 16   
  
int n;   
int total;   
int x[M];   
  
bool judge(int k)   
{   
    for(int j=1;j<k;j++)   
       if((abs(k-j)==abs(x[k]-x[j]))||(x[j]==x[k]))  return false;   //不在同斜线上,不同列(j != k,即为不同行)
    return true;   
}   
  
void dfs(int t)   
{   
    if(t>n) {   
       total++;   
       if(n<=8){   
          cout<<"Scheme "<<total<<endl;   
          for(int i=1;i<=n;i++){   
            for(int j=1;j<=n;j++){   
               if(j==x[i]) cout<<'q';   
               else        cout<<'0';   
            }   
            cout<<endl;   
          }   
          //memset(x,0,sizeof(x));   
       }   
       return ;   
    }   
    for(int i=1;i<=n;i++){   
        x[t]=i;   
        if(judge(t)) dfs(t+1);   
    }   
}   
  
int main()   
{   
    int cnt=1;   
    while(scanf("%d",&n)!=EOF){   
         cout<<"Case "<<cnt++<<": n="<<n<<endl;   
         total=0;   
         memset(x,0,sizeof(x));   
         dfs(1);   
         cout<<"Total: "<<total<<endl<<endl;   
    }   
    return 0;   
} 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值