1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
| #include <iostream> #include <cstring> #include <vector> #include <cstdio> #include <queue> using namespace std; typedef pair<int,int> P; const int dx[]={0,-1,1,0,0}; const int dy[]={0,0,0,-1,1}; int w,h,n; char map[20][20]; int step[200]; int st[3],ed[3]; vector<int> G[200]; int dist[200][200][200]; int color[200][200][200];
inline int ID(int a,int b,int c){ return (a << 16)|(b << 8)|c; }
inline bool conflict(int a,int b,int na,int nb){ return (na==nb||(a==nb&&b==na)); }
int bfs(){ queue<int> q1; queue<int> q2; q1.push(ID(st[0],st[1],st[2])); q2.push(ID(ed[0],ed[1],ed[2])); dist[st[0]][st[1]][st[2]]=0; dist[ed[0]][ed[1]][ed[2]]=1; color[st[0]][st[1]][st[2]]=0; color[ed[0]][ed[1]][ed[2]]=1; while(!q1.empty()||!q2.empty()){ int dir1=q1.size(),dir2=q2.size(); while(dir1--){ int t = q1.front(); q1.pop(); int a = (t >> 16) & 0xff, b = (t >> 8) & 0xff, c = t & 0xff; for (int i = 0; i < step[a]; i++) { int na = G[a][i]; for (int j = 0; j < step[b]; j++) { int nb = G[b][j]; if (conflict(a, b, na, nb)) continue; for (int k = 0; k < step[c]; k++) { int nc = G[c][k]; if (conflict(a, c, na, nc) || conflict(b, c, nb, nc)) continue; if (color[na][nb][nc] == -1) { color[na][nb][nc]=0; dist[na][nb][nc] = dist[a][b][c] + 1; q1.push(ID(na, nb, nc)); } else if(color[na][nb][nc] == 1) return dist[a][b][c]+dist[na][nb][nc]; } } } } while(dir2--){ int t = q2.front(); q2.pop(); int a = (t >> 16) & 0xff, b = (t >> 8) & 0xff, c = t & 0xff; for (int i = 0; i < step[a]; i++) { int na = G[a][i]; for (int j = 0; j < step[b]; j++) { int nb = G[b][j]; if (conflict(a, b, na, nb)) continue; for (int k = 0; k < step[c]; k++) { int nc = G[c][k]; if (conflict(a, c, na, nc) || conflict(b, c, nb, nc)) continue; if (color[na][nb][nc] == -1) { color[na][nb][nc]=1; dist[na][nb][nc] = dist[a][b][c] + 1; q2.push(ID(na, nb, nc)); } else if(color[na][nb][nc] == 0) return dist[a][b][c]+dist[na][nb][nc]; } } } } } return -1; }
int main(){ while(~scanf("%d%d%d\n",&w,&h,&n)&&n){ for(int i=0;i<h;i++) fgets(map[i],20,stdin); int k=0;P loc[200]; int re[20][20]; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ if(map[i][j]!='#'){ loc[k].first=i; loc[k].second=j; re[i][j]=k; if(islower(map[i][j])) st[map[i][j]-'a']=k; else if(isupper(map[i][j])) ed[map[i][j]-'A']=k; k++; } } } for(int i=0;i<k;i++){ G[i].clear(); step[i]=0; for(int j=0;j<5;j++){ int nx=loc[i].first+dx[j]; int ny=loc[i].second+dy[j]; if(map[nx][ny]!='#'){ G[i].push_back(re[nx][ny]); step[i]++; } } } if(n<=2){ G[k].clear(); step[k]=1; G[k].push_back(k); st[2]=ed[2]=k++; } if(n<=1){ G[k].clear(); step[k]=1; G[k].push_back(k); st[1]=ed[1]=k++; } memset(dist,-1, sizeof(dist)); memset(color,-1,sizeof(color)); printf("%d\n",bfs()); } return 0;
|