这篇跟 hdu 4856 那题记基本一样~ 不同点就是从发从L开始,那么dp[只访问L的状态][0]=0;
最后要回到L ,最简单方法就是 min{ dp[1……11][i] + dist[L][i] }
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<string>
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<list>
#include<map>
#include<set>
using namespace std;
const int N=21;
int n,m;
char pos[N][N];
struct node{
int x,y;
node(int x=0,int y=0):x(x),y(y){}
};
const int M=17;
node a[M+2];
int dp[1<<M][M];
int dist[M][M];
int len[N][N][N][N];
int st;
node p;
bool check(int x,int y){
if(x!=-1 && x<=y) return 1;
return 0;
}
int dir[][2]={0,1, 0,-1, 1,-1, 1,0, 1,1, -1,-1, -1,0, -1,1};
void dfs(int x,int y,int dep){
if(x<0 || x>=n || y<0 || y>=m) return ;
if(check(len[p.x][p.y][x][y],dep)) return ;
len[p.x][p.y][x][y]=dep;
for(int i=0;i<8;i++)
dfs(x+dir[i][0],y+dir[i][1],dep+1);
}
void predeal(){
st=0;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(pos[i][j]=='L'){
a[st++]=node(i,j);
break;
}
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(pos[i][j]=='#')
a[st++]=node(i,j);
memset(len,-1,sizeof(len));
memset(dist,-1,sizeof(dist));
for(int i=0;i<st;i++){
p=a[i];
dfs(p.x,p.y,0);
for(int j=0;j<st;j++){
int tp=len[p.x][p.y][a[j].x][a[j].y];
if(tp!=-1)
dist[i][j]=tp;
}
}
// for(int i=0;i<st;i++)
// for(int j=0;j<st;j++)if(i!=j)
// printf("dist[%d][%d]= %d\n",i,j,dist[i][j]);
}
void deal_min(int &x,int y){
if(y<=-1) return;
if(x==-1) x=y;
x=min(x,y);
}
void work(){
memset(dp,-1,sizeof(dp));
dp[1][0]=0;
for(int x=1;x<(1<<st);x++)
for(int i=0;i<st;i++) if((x>>i) & 1){
for(int j=0;j<st;j++)
if(i!=j && (x>>j)&1 ){
if(dp[x-(1<<i)][j]!=-1 && dist[j][i]!=-1)
deal_min(dp[x][i],dp[x-(1<<i)][j]+dist[j][i]);
}
}
int ans=-1;
for(int i=0;i<st;i++)
deal_min(ans,dp[(1<<st)-1][i]+dist[0][i]);
printf("%d\n",ans);
}
int main()
{
// freopen("in.in","r",stdin);
while(~scanf("%d%d",&n,&m)){
for(int i=0;i<n;i++)
scanf("%s",pos[i]);
predeal();
work();
}
return 0;
}