이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
#include <queue>
#include <vector>
#include <functional>
#define N 1001
#define INF 1000000000
using namespace std;
typedef pair<int,pair<int,int> > pip;
int n, m, board[N][N], go[N][N], d[N][N];
int dx[4]={1,-1,0,0}, dy[4]={0,0,1,-1};
bool go_check[N][N], check[N][N];
pair<int,int> S, E;
vector<pair<int,int> > p[N][N];
queue<int> Q;
priority_queue<pip,vector<pip>,greater<pip> > PQ;
void bfs_go(){
int ty, tx, yy, xx;
bool w_check;
for(int i=1; i<=n; i++)
for(int j=1; j<=m; j++){
w_check=false;
for(int s=0; s<4; s++){
ty=i+dy[s], tx=j+dx[s];
if(ty<1 || ty>n || tx<1 || tx>m) w_check=true;
else if(board[ty][tx]) w_check=true;
}
if(w_check){
go_check[i][j]=true, Q.push(i), Q.push(j);
}
}
while(!Q.empty()){
yy=Q.front(), Q.pop();
xx=Q.front(), Q.pop();
for(int i=0; i<4; i++){
ty=yy+dy[i], tx=xx+dx[i];
if(1<=ty && ty<=n && 1<=tx && tx<=m && go_check[ty][tx]==false){
go[ty][tx]=go[yy][xx]+1, go_check[ty][tx]=true;
Q.push(ty), Q.push(tx);
}
}
}
}
void Push(){
pair<int,int> temp;
for(int i=1; i<=n; i++){
temp={i,1};
for(int j=1; j<=m; j++){
if(board[i][j]) temp={i,j+1};
else p[i][j].push_back(temp);
}
}
for(int i=1; i<=n; i++){
temp={i,m};
for(int j=m; j>=1; j--){
if(board[i][j]) temp={i,j-1};
else p[i][j].push_back(temp);
}
}
for(int j=1; j<=m; j++){
temp={1,j};
for(int i=1; i<=n; i++){
if(board[i][j]) temp={i+1,j};
else p[i][j].push_back(temp);
}
}
for(int j=1; j<=m; j++){
temp={n,j};
for(int i=n; i>=1; i--){
if(board[i][j]) temp={i-1,j};
else p[i][j].push_back(temp);
}
}
}
int main(){
int yy, xx, ty, tx;
char in[1005];
scanf("%d %d",&n,&m);
for(int i=1; i<=n; i++){
scanf("%s",in+1);
for(int j=1; j<=m; j++)
if(in[j]=='#') board[i][j]=1;
else if(in[j]=='S') S={i,j};
else if(in[j]=='C') E={i,j};
}
bfs_go(), Push();
for(int i=1; i<=n; i++)
for(int j=1; j<=m; j++) d[i][j]=INF;
PQ.push({0,{S.first,S.second}}), d[S.first][S.second]=0;
while(!PQ.empty()){
yy=PQ.top().second.first, xx=PQ.top().second.second, PQ.pop();
if(check[yy][xx]) continue;
check[yy][xx]=true;
for(int i=0; i<4; i++){
ty=yy+dy[i], tx=xx+dx[i];
if(1<=ty && ty<=n && 1<=tx && tx<=m && d[ty][tx]>d[yy][xx]+1){
d[ty][tx]=d[yy][xx]+1;
PQ.push({d[ty][tx],{ty,tx}});
}
}
for(vector<pair<int,int> >::iterator it=p[yy][xx].begin(); it!=p[yy][xx].end(); it++){
ty=it->first, tx=it->second;
if(d[ty][tx]>d[yy][xx]+go[yy][xx]+1){
d[ty][tx]=d[yy][xx]+go[yy][xx]+1;
PQ.push({d[ty][tx],{ty,tx}});
}
}
}
printf("%d",d[E.first][E.second]);
}
컴파일 시 표준 에러 (stderr) 메시지
portals.cpp: In function 'int main()':
portals.cpp:85:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d",&n,&m);
^
portals.cpp:87:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%s",in+1);
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |