UVa 291 The House Of Santa Claus 回溯dfs

Posted noobimp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVa 291 The House Of Santa Claus 回溯dfs相关的知识,希望对你有一定的参考价值。

题意:从左下方的1开始,一笔画出圣诞老人的房子。

 1 #include <iostream>
 2 #include <cstring>
 3 using namespace std;
 4 int edge[6][6];
 5 
 6 //已画了k条边 准备将端点x加入进来
 7 void dfs(int x,int k,string s){
 8     s+=char(x+0);
 9     if(k==8){
10         cout<<s<<endl;
11         return;
12     }
13     for(int y=1;y<=5;y++){
14         if(edge[x][y]){
15             edge[x][y]=edge[y][x]=0;
16             dfs(y,k+1,s);
17             edge[x][y]=edge[y][x]=1;
18         }
19     }
20 }
21 int main(){
22     memset(edge,0,sizeof(edge));
23     for(int i=1;i<=5;i++){
24         for(int j=1;j<=5;j++){
25             if(i!=j)
26                 edge[i][j]=1;
27         }
28     }
29     edge[4][1]=edge[1][4]=0;//1、4  2、4不相连
30     edge[4][2]=edge[2][4]=0;
31     dfs(1,0,"");
32     return 0;
33 }

 

以上是关于UVa 291 The House Of Santa Claus 回溯dfs的主要内容,如果未能解决你的问题,请参考以下文章

The goddess, the bird, the bell, the temptation of the house

UVA The Tower of Babylon

UVa 437 The Tower of Babylon(动态规划)

Uva437 The Tower of Babylon

UVA437-The Tower of Babylon(动态规划基础)

UVA437 The Tower of Babylon