# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
977562 | farica | Mecho (IOI09_mecho) | C++14 | 203 ms | 6700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int MAX_N = 4e5 + 5;
int n, s, dist[800][800], sx, sy;
string grid[800];
bool test(int m) {
queue<pair<int, pair<int,int>>>q;
q.push({0, {sx, sy}});
vector<vector<bool>>visited(n, vector<bool>(n, 0));
while(!q.empty()) {
int cnt = q.front().first, x = q.front().second.first, y = q.front().second.second;
q.pop();
if(visited[x][y]) continue;
visited[x][y] = 1;
if(grid[x][y] == 'D') return true;
++cnt;
int cost = cnt / s + (cnt % s > 0 ? 1 : 0) + m;
if(x && dist[x-1][y] >= cost && grid[x-1][y] != 'T') q.push({cnt, {x-1, y}});
if(y && dist[x][y-1] >= cost && grid[x][y-1] != 'T') q.push({cnt, {x, y-1}});
if(x+1<n && dist[x+1][y] >= cost && grid[x+1][y] != 'T') q.push({cnt, {x+1, y}});
if(y+1<n && dist[x][y+1] >= cost && grid[x][y+1] != 'T') q.push({cnt, {x, y+1}});
}
return false;
}
void solve() {
cin >> n >> s;
queue<pair<int,int>>q;
for(int i=0; i<n; ++i) {
cin >> grid[i];
for(int j=0; j<n; ++j) {
dist[i][j] = -1;
if(grid[i][j] == 'H') {
q.push({i, j});
dist[i][j] = 0;
} else if(grid[i][j] == 'M') sx=i, sy=j;
}
}
while(!q.empty()) {
int i = q.front().first, j = q.front().second;
q.pop();
if(i && dist[i-1][j] == -1 && grid[i-1][j] != 'T' && grid[i-1][j] != 'M') {
dist[i-1][j] = dist[i][j] + 1;
q.push({i-1, j});
}
if(j && dist[i][j-1] == -1 && grid[i][j-1] != 'T' && grid[i][j-1] != 'M') {
dist[i][j-1] = dist[i][j] + 1;
q.push({i, j-1});
}
if(i<n-1 && dist[i+1][j] == -1 && grid[i+1][j] != 'T' && grid[i+1][j] != 'M') {
dist[i+1][j] = dist[i][j] + 1;
q.push({i+1, j});
}
if(j<n-1 && dist[i][j+1] == -1 && grid[i][j+1] != 'T' && grid[i][j+1] != 'M') {
dist[i][j+1] = dist[i][j] + 1;
q.push({i, j+1});
}
}
dist[sx][sy] = n*n*n;
if(!test(0)) {
cout << -1 << endl;
return;
}
int l=0, r=n*n, mid;
while(l<=r) {
mid = (l+r)/2;
if(test(mid)) l = mid + 1;
else r = mid - 1;
}
cout << l - 1 << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 1;
while(t--) solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |