# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
500731 | kevin | Mecho (IOI09_mecho) | C++17 | 227 ms | 8152 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define nl cout<<"\n"
#define f first
#define s second
#define ca(v) for(auto i:v) cout<<i<<" ";
int xm[4] = {-1, 1, 0, 0};
int ym[4] = {0, 0, -1, 1};
int grid[801][801];
int dst[801][801];
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
if (fopen("input.in", "r")) freopen("input.in", "r", stdin);
int n; cin>>n; int x; cin>>x;
queue<pair<int, int>> q;
pair<int, int> st;
pair<int, int> ed;
vector<vector<bool>> vis(n, vector<bool>(n, 0));
for(int i=0; i<n; i++){
for(int j=0; j<n; j++){
char c; cin>>c;
grid[i][j] = (c != 'T');
if(c == 'M') st = {i, j};
if(c == 'D') ed = {i, j};
if(c == 'H') {
q.push({i, j});
vis[i][j] = 1;
}
}
}
while(q.size()){
auto c = q.front(); q.pop();
for(int i=0; i<4; i++){
int nx = c.f + xm[i];
int ny = c.s + ym[i];
if(nx >= 0 && nx < n && ny >= 0 && ny < n && grid[nx][ny] && !vis[nx][ny]){
vis[nx][ny] = 1;
dst[nx][ny] = dst[c.f][c.s] + 1;
q.push({nx, ny});
}
}
}
int l = 0;
int r = n*n+5;
int ans = -1;
while(l <= r){
int m = (l + r) / 2;
vis = vector<vector<bool>>(n, vector<bool>(n, 0));
vector<vector<int>> d(n, vector<int>(n, 0));
vis[st.f][st.s] = 1;
d[st.f][st.s] = m * x;
q.push({st.f, st.s});
// cout<<m<<"\n";
while(q.size()){
auto c = q.front(); q.pop();
int mx = (d[c.f][c.s] + x) / x;
for(int i=0; i<4; i++){
int nx = c.f + xm[i];
int ny = c.s + ym[i];
if(nx >= 0 && nx < n && ny >= 0 && ny < n && grid[nx][ny] && !vis[nx][ny] && mx <= dst[nx][ny]){
d[nx][ny] = d[c.f][c.s] + 1;
vis[nx][ny] = 1;
q.push({nx, ny});
}
}
}
// for(int i=0; i<n; i++){
// for(int j=0; j<n; j++){
// cout<<dst[i][j]<<"|"<<d[i][j]<<" ";
// } nl;
// }
if(vis[ed.f][ed.s]){
l = m+1;
ans = m;
}
else{
r = m-1;
}
// nl;
}
cout<<ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |