# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
674619 | sudheerays123 | Mecho (IOI09_mecho) | C++17 | 246 ms | 11508 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 fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long int
const ll N = 800+5 , INF = 1e18 , MOD = 1e9+7;
ll sx,sy,ex,ey;
vector<ll> dx = {0,0,-1,1};
vector<ll> dy = {-1,1,0,0};
vector<vector<ll>> bee(N,vector<ll>(N,-1));
vector<vector<char>> grid(N,vector<char>(N));
ll n,s;
bool check(ll start){
vector<vector<ll>> dist(n+5,vector<ll>(n+5,-1));
dist[sx][sy] = 0;
queue<pair<ll,ll>> q;
q.push(make_pair(sx,sy));
while(!q.empty()){
ll a = q.front().first;
ll b = q.front().second;
q.pop();
for(ll t = 0; t <= 3; t++){
ll x = a+dx[t];
ll y = b+dy[t];
if(x < 1 || x > n || y < 1 || y > n || grid[x][y] == 'T') continue;
if(dist[x][y] != -1) continue;
if(bee[x][y] != -1){
if(bee[x][y] <= start+((dist[a][b]+1)/s)){
continue;
}
}
dist[x][y] = dist[a][b]+1;
q.push(make_pair(x,y));
}
}
return (dist[ex][ey] != -1);
}
void solve(){
cin >> n >> s;
queue<pair<ll,ll>> q;
for(ll i = 1; i <= n; i++){
for(ll j = 1; j <= n; j++){
cin >> grid[i][j];
if(grid[i][j] == 'M'){
sx = i;
sy = j;
}
else if(grid[i][j] == 'H'){
q.push(make_pair(i,j));
bee[i][j] = 0;
}
else if(grid[i][j] == 'D'){
ex = i;
ey = j;
}
}
}
while(!q.empty()){
ll a = q.front().first;
ll b = q.front().second;
q.pop();
for(ll t = 0; t <= 3; t++){
ll x = a+dx[t];
ll y = b+dy[t];
if(x < 1 || x > n || y < 1 || y > n || grid[x][y] == 'D' || grid[x][y] == 'T') continue;
if(bee[x][y] != -1) continue;
bee[x][y] = bee[a][b]+1;
q.push(make_pair(x,y));
}
}
ll low = 0 , high = bee[sx][sy]-1;
ll ans;
if(check(0) == false){
cout << "-1";
return;
}
while(low <= high){
ll mid = (low+high)/2;
if(check(mid)){
ans = mid;
low = mid+1;
}
else high = mid-1;
}
cout << ans;
}
int main(){
fast;
ll tc = 1;
// cin >> tc;
while(tc--) solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |