# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
882827 | abhinavshukla408 | Mecho (IOI09_mecho) | C++17 | 343 ms | 31076 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <set>
#include <string>
#include <unordered_set>
#include <unordered_map>
#include <map>
#include <stack>
#include <queue>
#include <algorithm>
#include <cassert>
#include <math.h>
using namespace std;
#define endl "\n"
#define int int64_t
#define pb push_back
#define FOR(i,a,b) for (int i = (a); i < (b); ++i)
#define FOR0(i,a) FOR(i,0,a)
#define FOR1(i,a) for (int i = (1); i <= (a); ++i)
#define TRAV(a,x) for (auto& a: x)
using pii = pair<int,int>;
using vi = vector<int>;
vi dx = {-1,0,1,0};
vi dy = {0,-1,0,1};
const int NMAX=800;
int N;
int S;
pii start={0,0};
pii end2={0,0};
bool f(int k,string grid[NMAX][NMAX],int distBees[NMAX][NMAX]){
queue<pii> cur;
cur.push(start);
int dist[N][N];
FOR0(i,N){
FOR0(j,N){
dist[i][j]=-1;
}
}
dist[start.first][start.second]=0;
while(!cur.empty()){
pii curNode=cur.front();
cur.pop();
FOR0(i,4){
int newR=curNode.first+dx[i];
int newC=curNode.second+dy[i];
if(newR<0 || newR>=N || newC<0 || newC>=N){continue;}
if((grid[newR][newC]=="G" || grid[newR][newC]=="D") && dist[newR][newC]==(-1)){
if((distBees[newR][newC]-k)>((dist[curNode.first][curNode.second]+1)/S)){
//cout<<newR<<" "<<newC<<endl;
dist[newR][newC]=dist[curNode.first][curNode.second]+1;
cur.push({newR,newC});
}
}
}
}
if(dist[end2.first][end2.second]!=(-1)){
return true;
}
return false;
}
int last_true(int lo, int hi,string grid[NMAX][NMAX],int distBees[NMAX][NMAX]) {
// if none of the values in the range work, return lo - 1
lo--;
while (lo < hi) {
// find the middle of the current range (rounding up)
int mid = lo + (hi - lo + 1) / 2;
if (f(mid,grid,distBees)) {
// if mid works, then all numbers smaller than mid also work
lo = mid;
} else {
// if mid does not work, greater values would not work either
hi = mid - 1;
}
}
return lo;
}
int32_t main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
// cout<<"yo"<<endl;
// return 0;
cin>>N>>S;
string grid[NMAX][NMAX];
int distBees[NMAX][NMAX];
int distMan[NMAX][NMAX];
queue<pii> cur;
FOR0(r,N){
string in;
cin>>in;
FOR0(c,N){
distBees[r][c]=-1;
grid[r][c]=(in.at(c));
if(grid[r][c]=="H"){
cur.push({r,c});
distBees[r][c]=0;
}
if(grid[r][c]=="M"){
start={r,c};
}
if(grid[r][c]=="D"){
end2={r,c};
}
}
}
// return 0;
while(!cur.empty()){
pii curNode=cur.front();
int curR=curNode.first;
int curC=curNode.second;
cur.pop();
FOR0(i,4){
int newR=curNode.first+dx[i];
int newC=curNode.second+dy[i];
if(newR<0 || newR>=N || newC<0 || newC>=N){continue;}
if(grid[newR][newC]!="M" && distBees[newR][newC]==(-1)){
distBees[newR][newC]=distBees[curR][curC]+1;
cur.push({newR,newC});
}
}
}
//return 0;
cout<<last_true(2,1000000,grid,distBees)<<endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |