# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
682827 | NONTAC | Mecho (IOI09_mecho) | C++11 | 233 ms | 11924 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> ii;
int dx[4] = {0, -1, 1, 0};
int dy[4] = {1, 0, 0, -1};
long long n, s;
int si, sj, fi, fj;
char grid[802][802];
long long reach[802][802], d[802][802];
bool vis[802][802];
void print()
{
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++) cout<<reach[i][j]<<" ";
cout<<endl;
}
}
void INIT()
{
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
vis[i][j] = false;
d[i][j] = INT_MAX;
}
}
}
void flood()
{
queue<ii> q;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++) if(grid[i][j] == 'H'){
vis[i][j] = true;
q.push(ii(i, j));
}
}
while(!q.empty()){
int ui = q.front().first, uj = q.front().second;
q.pop();
for(int i = 0; i < 4; i++){
int vi = ui + dx[i], vj = uj + dy[i];
if(vi >= 1 && vi <= n && vj >= 1 && vj <= n){
if(!vis[vi][vj] && grid[vi][vj] != 'T' && grid[vi][vj] != 'D'){
vis[vi][vj] = true;
reach[vi][vj] = reach[ui][uj] + s;
q.push(ii(vi, vj));
}
}
}
}
}
bool check(long long k)
{
INIT();
d[si][sj] = k * s;
vis[si][sj] = true;
queue<ii> q;
q.push(ii(si, sj));
while(!q.empty()){
int ui = q.front().first, uj = q.front().second;
q.pop();
if(ui == fi && uj == fj){
return true;
}
for(int i = 0; i < 4; i++){
int vi = ui + dx[i], vj = uj + dy[i];
if(vi < 1 || vi > n || vj < 1 || vj > n) continue;
if(reach[vi][vj] >= d[ui][uj] + 1 && !vis[vi][vj]){
vis[vi][vj] = true;
d[vi][vj] = d[ui][uj] + 1;
q.push(ii(vi, vj));
}
}
}
return false;
}
int main()
{
//freopen("test.in","r",stdin);
//freopen("test.out","w",stdout);
cin>>n>>s;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
cin>>grid[i][j];
if(grid[i][j] == 'M'){
si = i;
sj = j;
}
if(grid[i][j] == 'D'){
fi = i;
fj = j;
}
}
}
flood();
reach[fi][fj] = INT_MAX;
//print();
long long lo = 0, hi = 100000000;
while(lo < hi){
long long mid = lo + (hi - lo + 1) / 2;
if(check(mid)){
lo = mid;
}
else{
hi = mid - 1;
}
}
if(!check(lo)) cout<<-1;
else cout<<lo;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |