#include //typedef //-------------------------#include const double pi = 3.141592653589793238462643383279; using namespace std; templateinline T readT() { char c = getchar_unlocked(); bool neg = (c=='-'); T res = neg?0:c-'0'; while(isdigit(c=getchar_unlocked())) res = res*10 + c-'0'; return neg?-res:res; } templateinline void writeT(T x, char c='\n'){ int d[20],i=0; if(x<0)putchar_unlocked('-'),x*=-1; do{d[i++]=x%10;}while(x/=10); while(i--)putchar_unlocked('0'+d[i]); putchar_unlocked(c); } //typedef //------------------------------------------ typedef vector VI; typedef vector VVI; typedef vector VS; typedef pair PII; typedef pair PLL; typedef pair TIII; typedef long long LL; typedef unsigned long long ULL; typedef vector VLL; typedef vector VVLL; //container util //------------------------------------------ #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define MP make_pair #define SZ(a) int((a).size()) #define SQ(a) ((a)*(a)) #define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i) #define EXIST(s,e) ((s).find(e)!=(s).end()) #define SORT(c) sort((c).begin(),(c).end()) //repetition //------------------------------------------ #define FOR(i,s,n) for(int i=s;i<(int)n;++i) #define REP(i,n) FOR(i,0,n) #define MOD 1000000007 #define rep(i, a, b) for(int i = a; i < (b); ++i) #define trav(a, x) for(auto& a : x) #define all(x) x.begin(), x.end() #define sz(x) (int)(x).size() typedef long long ll; typedef pair pii; typedef vector vi; const double EPS = 1E-8; #define chmin(x,y) x=min(x,y) #define chmax(x,y) x=max(x,y) class UnionFind { public: vector par; vector siz; UnionFind(int sz_): par(sz_), siz(sz_, 1) { for (ll i = 0; i < sz_; ++i) par[i] = i; } void init(int sz_) { par.resize(sz_); siz.assign(sz_, 1LL); for (ll i = 0; i < sz_; ++i) par[i] = i; } int root(int x) { while (par[x] != x) { x = par[x] = par[par[x]]; } return x; } bool merge(int x, int y) { x = root(x); y = root(y); if (x == y) return false; if (siz[x] < siz[y]) swap(x, y); siz[x] += siz[y]; par[y] = x; return true; } bool issame(int x, int y) { return root(x) == root(y); } int size(int x) { return siz[root(x)]; } }; ll modPow(ll x, ll n, ll mod = MOD){ ll res = 1; while(n){ if(n&1) res = (res * x)%mod; res %= mod; x = x * x %mod; n >>= 1; } return res; } #define SIEVE_SIZE 5000000+10 bool sieve[SIEVE_SIZE]; void makeSieve(){ for(int i=0; i vec; typedef vector mat; mat mul(mat &A, mat &B) { mat C(A.size(), vec((int)B[0].size())); for(int i=0; i 0) { if(n & 1) B = mul(B, A); A = mul(A, A); n >>= 1; } return B; } map prime_factor(ll n) { map res; for(ll i=2; i*i <= n; i++) { while(n%i == 0) { res[i]++; n /= i; } } if(n != 1) res[n] = 1; return res; } using ld= long double; ll dist[510][510][2]; int d1[2] = {1,-1}; int d2[2] = {2,-2}; int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(5); int H, W; cin >> H >> W; vector v; REP(i,H){ string s; cin >> s; v.push_back(s); } int sx,sy,gx,gy; REP(i,H){ REP(j,W){ if(v[i][j] == 'S'){ sx=j,sy=i; } if(v[i][j] == 'G'){ gy=i,gx=j; } } } REP(i,H){ REP(j,W){ dist[i][j][0] = dist[i][j][1] = INT_MAX; } } dist[sy][sx][0] = 0; queue> q; q.push({sy*W+sx, 0}); while(q.size()){ auto p = q.front(); q.pop(); int y = p.first/W, x = p.first%W; int ro = p.second; if(ro == 0){ for(int i=0; i<2; i++){ for(int j=0; j<2; j++){ int ny = y + d1[i], nx = x+d2[j]; if(ny >= 0 && ny < H && nx >= 0 && nx < W){ if(v[ny][nx] == 'R'){ if(dist[ny][nx][1] == INT_MAX){ dist[ny][nx][1] = dist[y][x][0] + 1; q.push({ny*W+nx, 1}); } }else{ if(dist[ny][nx][0] == INT_MAX){ dist[ny][nx][0] = dist[y][x][0] + 1; q.push({ny*W+nx, 0}); } } } ny = y+d2[i], nx = x+d1[j]; if(ny >= 0 && ny < H && nx >= 0 && nx < W){ if(v[ny][nx] == 'R'){ if(dist[ny][nx][1] == INT_MAX){ dist[ny][nx][1] = dist[y][x][0] + 1; q.push({ny*W+nx, 1}); } }else{ if(dist[ny][nx][0] == INT_MAX){ dist[ny][nx][0] = dist[y][x][0] + 1; q.push({ny*W+nx, 0}); } } } } } }else{ for(int i=0; i<2; i++){ for(int j=0; j<2; j++){ int ny = y + d1[i], nx = x+d1[j]; if(ny >= 0 && ny < H && nx >= 0 && nx < W){ if(v[ny][nx] == 'R'){ if(dist[ny][nx][0] == INT_MAX){ dist[ny][nx][0] = dist[y][x][1] + 1; q.push({ny*W+nx, 0}); } }else{ if(dist[ny][nx][1] == INT_MAX){ dist[ny][nx][1] = dist[y][x][1] + 1; q.push({ny*W+nx, 1}); } } } } } } } ll ans = INT_MAX; ans = min(ans, min(dist[gy][gx][0], dist[gy][gx][1])); if(ans == INT_MAX) ans = -1; cout << ans << endl; return 0; }