无向图最少着色问题
DFS+回溯
#include<iostream>
using namespace std;
int map[100][100]={0};
int v=4;
int color[100]={0};
int result=10000;
/*无向图至少染色问题*/
int ok(int depth,int c){
for(int i=1;i<=v;i++){
if(map[i][depth]==1||map[depth][i]==1){
if(color[i]==c)
return 0;
if(color[i]==0)
continue;
}
}
return 1;
}
void dfs(int depth,int color_s){
if(color_s>=result){//当前颜色大于了最小着色数 回退
return ;
}
if(depth>v){ //着色完成
result=result<color_s?result:color_s;
return ;
}
for(int i=1;i<=color_s;i++){
if(ok(depth,i)==1){
color[depth]=i;
dfs(depth+1,color_s);
color[depth]=0;
}
}
/*重新上一个颜色*/
color[depth]=color_s+1;
dfs(depth+1,color_s+1);
color[depth]=0;
}
int main(){
v=5;
map[1][2]=1;
map[1][3]=1;
map[1][4]=1;
map[2][3]=1;
map[2][4]=1;
map[2][5]=1;
map[3][4]=1;
map[4][5]=1;
map[3][5]=1;
map[1][5]=1;
dfs(1,0);
cout<<result;
return 0;
}