# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
445084 | MilosMilutinovic | Tracks in the Snow (BOI13_tracks) | C++14 | 673 ms | 120224 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N=4050;
const int inf=1e9;
int n,m,dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};
char s[N][N];
int dist[N][N];
bool valid(int x,int y){
return x>=1&&x<=n&&y>=1&&y<=m&&s[x][y]!='.';
}
int main(){
scanf("%i%i",&n,&m);
for(int i=1;i<=n;i++)scanf("%s",s[i]+1);
for(int i=1;i<=n;i++)for(int j=1;j<=m;j++)dist[i][j]=inf;
deque<pair<int,int>> q;
q.push_back({1,1});
dist[1][1]=1;
while(!q.empty()){
int x=q[0].first;
int y=q[0].second;
q.pop_front();
for(int dir=0;dir<4;dir++){
int nx=x+dx[dir],ny=y+dy[dir];
int w=(s[x][y]!=s[nx][ny]);
if(valid(nx,ny)&&dist[nx][ny]>dist[x][y]+w){
dist[nx][ny]=dist[x][y]+w;
if(w==0)q.push_front({nx,ny});
else q.push_back({nx,ny});
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |