比赛 |
20120919dfs |
评测结果 |
AAAAA |
题目名称 |
画海岛地图 |
最终得分 |
100 |
用户昵称 |
Makazeu |
运行时间 |
0.109 s |
代码语言 |
C++ |
内存使用 |
1.94 MiB |
提交时间 |
2012-09-19 21:57:31 |
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <algorithm>
using namespace std;
const int MAXN=10;
int Tot=0;
int map[MAXN][MAXN]={0};
int zong[MAXN][MAXN];
int N,heng[MAXN][MAXN];
int lenz[MAXN]={0},lenh[MAXN]={0};
inline void init()
{
scanf("%d\n",&N);int x;
for(int i=1;i<=N;i++)
{
scanf("%d",&x);
while(x) {heng[i][++lenh[i]]=x; scanf("%d",&x);}
}
for(int i=1;i<=N;i++)
{
scanf("%d",&x);
while(x) {zong[i][++lenz[i]]=x; scanf("%d",&x);}
}
}
inline bool check()
{
for(int i=1;i<=N;i++)
{
int now=0,top=0,tmp[MAXN]={0};
for(int j=1;j<=N;j++)
{
if(!map[j-1][i] && map[j][i]) {now++; continue;}
if(!map[j][i] && !now) continue;
if(!map[j][i] && now) {tmp[++top]=now;now=0;continue;}
if(map[j][i] && now) {now++; continue;}
}
if(now!=0) tmp[++top]=now;
if(top!=lenz[i]) return false;
for(int j=1;j<=top;j++)
if(zong[i][j]!=tmp[j]) return false;
}
return true;
}
inline void output()
{
Tot++; printf("%d\n",Tot);
for(int i=1;i<=N;i++)
{
for(int j=1;j<=N;j++)
printf("%c",map[i][j]?'*':' ');
printf("\n");
}
}
void dfs(int k,int pos,int top)
{
if(k>N)
{
bool flag=check();
if(flag) output(); return;
}
if(N-pos<lenh[k]-top) return;
int nowtop=top;
for(int i=pos;i<=N;i++)
{
if(i+heng[k][nowtop]-1>N) return;
for(int j=i;j<=i+heng[k][nowtop]-1;j++) map[k][j]=1;
nowtop++; if(nowtop==lenh[k]+1) dfs(k+1,1,1);
else dfs(k,i+heng[k][nowtop-1]+1,nowtop); nowtop--;
for(int j=i;j<=i+heng[k][nowtop]-1;j++) map[k][j]=0;
}
}
inline void debug()
{
for(int i=1;i<=N;i++)
{
printf("%d--->%d--->",i,lenh[i]);
for(int j=1;j<=lenh[i];j++)
printf("%d ",heng[i][j]);
printf("\n");
}
printf("\n===============\n");
for(int i=1;i<=N;i++)
{
printf("%d--->%d--->",i,lenz[i]);
for(int j=1;j<=lenz[i];j++)
printf("%d ",zong[i][j]);
printf("\n");
}
}
int main()
{
freopen("island.in","r",stdin);
freopen("island.out","w",stdout);
init();//debug();
dfs(1,1,1);
if(Tot==0) printf("no\n");
return 0;
}