# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
500996 | kevin | Mecho (IOI09_mecho) | C++17 | 216 ms | 8196 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 != ed.f || ny != ed.s) && 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});
}
}
}
dst[ed.f][ed.s] = n*n + 5;
int l = 0;
int r = dst[st.f][st.s] - 1;
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] + 1) / 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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |