제출 #715599

#제출 시각아이디문제언어결과실행 시간메모리
715599Iliya_Tracks in the Snow (BOI13_tracks)C++14
31.77 / 100
1024 ms125860 KiB
// IN THE NAME OF GOD #include<bits/stdc++.h> #define endl '\n' #define file_reading freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #define flush cout.flush(); using namespace std; typedef long long ll; typedef long double dll; typedef unsigned long long ull; const int N = 4e3+5, inf = 1e9; int dat[N][N], dist[N][N], ans, having, must; queue<pair<int,int>> q; void dij(int n, int m){ for(int i=1; i<=n; i++) for(int j=1; j<=m; j++) dist[i][j] = inf; dist[n][m] = 1; q.push({n,m}); while(q.size()){ int x = q.front().first, y = q.front().second; q.pop(); ans = max(ans,dist[x][y]); if (x > 1 && dat[x][y] == dat[x-1][y]) if (dist[x-1][y] == inf) dist[x-1][y] = dist[x][y], q.push({x-1,y}); if (x < n && dat[x][y] == dat[x+1][y]) if (dist[x+1][y] == inf) dist[x+1][y] = dist[x][y], q.push({x+1,y}); if (y > 1 && dat[x][y] == dat[x][y-1]) if (dist[x][y-1] == inf) dist[x][y-1] = dist[x][y], q.push({x,y-1}); if (y < m && dat[x][y] == dat[x][y+1]) if (dist[x][y+1] == inf) dist[x][y+1] = dist[x][y], q.push({x,y+1}); if (x > 1 && dat[x][y] != dat[x-1][y] && dat[x][y] + dat[x-1][y] == 3) if (dist[x-1][y] == inf) dist[x-1][y] = dist[x][y]+1, q.push({x-1,y}); if (x < n && dat[x][y] != dat[x+1][y] && dat[x][y] + dat[x+1][y] == 3) if (dist[x+1][y] == inf) dist[x+1][y] = dist[x][y]+1, q.push({x+1,y}); if (y > 1 && dat[x][y] != dat[x][y-1] && dat[x][y] + dat[x][y-1] == 3) if (dist[x][y-1] == inf) dist[x][y-1] = dist[x][y]+1, q.push({x,y-1}); if (y < m && dat[x][y] != dat[x][y+1] && dat[x][y] + dat[x][y+1] == 3) if (dist[x][y+1] == inf) dist[x][y+1] = dist[x][y]+1, q.push({x,y+1}); } } void solve(){ int n,m; cin >> n >> m; for(int i=1; i<=n; i++){ for(int j=1; j<=m; j++){ char g; cin >> g; if (g == '.') dat[i][j] = 0; else if (g == 'R') dat[i][j] = 1, must++; else dat[i][j] = 2, must++; } } dij(n,m); cout << ans << endl; } int32_t main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t; t=1; //cin >> t; while(t--){solve();} }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...