Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
143736 陈家宝 冲突 C++ 通过 100 7 MS 252 KB 921 2024-04-18 13:23:38

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int n,maxn; char a[10][10]; bool res[10][10]; void dfs(int x,int y,int sum){ if(y>n){ dfs(x+1,1,sum); return; } if(x>n){ bool f=true; for(int i=1;i<=n;i++){ bool fl=false; for(int j=1;j<=n;j++){ if(res[i][j]&&fl)f=false; if(res[i][j])fl=true; else if(a[i][j]=='X')fl=false; } } if(!f)return; for(int i=1;i<=n;i++){ bool fl=false; for(int j=1;j<=n;j++){ if(res[j][i]&&fl)f=false; if(res[j][i])fl=true; else if(a[j][i]=='X')fl=false; } } if(!f)return; maxn=max(maxn,sum); return; } res[x][y]=false; dfs(x,y+1,sum); if(a[x][y]!='X'){ res[x][y]=true; dfs(x,y+1,sum+1); res[x][y]=false; } } int main(){ while(cin>>n){ if(n==0)break; for(int i=1;i<=n;i++)for(int j=1;j<=n;j++)cin>>a[i][j]; maxn=0; dfs(1,1,0); cout<<maxn<<'\n'; } return 0; }


测评信息: