#include using namespace std; typedef long long ll; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b #define vl vector #define vii vector> #define vll vector> #define vvi vector> #define vvl vector> #define vvii vector>> #define vvll vector>> #define vst vector #define pii pair #define pll pair #define pb push_back #define all(x) (x).begin(),(x).end() #define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end()) #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=505,INF=15<<26; int dis[MAX][MAX][10]; vi dh={0,1,0,-1},dw={1,0,-1,0}; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); int H,W,N;cin>>H>>W>>N; vst S(H); for(int i=0;i>S[i]; } int sh,sw,gh,gw; for(int i=0;i> Q; Q.push({sh,sw,0}); for(int i=0;i=H||tow<0||tow>=W) continue; if(S[toh][tow]=='#') continue; int tox=x; if(S[toh][tow]=='.'){ if(chmin(dis[toh][tow][tox],d+1)) Q.push({toh,tow,tox}); } if(S[toh][tow]=='S'){ if(chmin(dis[toh][tow][tox],d+1)) Q.push({toh,tow,tox}); } if(S[toh][tow]=='G'){ if(chmin(dis[toh][tow][tox],d+1)) Q.push({toh,tow,tox}); } if('1'<=S[toh][tow]&&S[toh][tow]<='9'){ tox=(S[toh][tow]-'0'); if(chmin(dis[toh][tow][tox],d+1)) Q.push({toh,tow,tox}); } if('a'<=S[toh][tow]&&S[toh][tow]<='i'&&(S[toh][tow]-'a')==x-1){ if(chmin(dis[toh][tow][tox],d+1)) Q.push({toh,tow,tox}); } } } int ans=INF; for(int k=0;k<10;k++) chmin(ans,dis[gh][gw][k]); if(ans==INF) ans=-1; cout<