# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
42409 | Hassoony | Tracks in the Snow (BOI13_tracks) | C++14 | 2041 ms | 280540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<unordered_map>
#define F first
#define S second
using namespace std;
typedef long long ll;
typedef long double D;
const ll inf=(1ll<<61);
const ll mod=1e9+7;
const int MX=4002;
int n,m,ans;
bool vis[MX][MX];
char a[MX][MX],c;
int dx[]={0,0,-1,1};
int dy[]={1,-1,0,0};
int main(){
scanf("%d%d",&n,&m);
for(int i=0;i<n;i++)scanf("%s",&a[i]);
queue<pair<int,int> >q[2];
int node=0;
q[node].push({0,0});
while(!q[node].empty()){
while(!q[node].empty()){
int x=q[node].front().first,y=q[node].front().second;q[node].pop();
if(vis[x][y])continue;
vis[x][y]=1;
for(int i=0;i<4;i++){
int nx=dx[i]+x,ny=dy[i]+y;
if(nx>=n||ny>=m||nx<0||ny<0)continue;
if(a[nx][ny]==a[x][y])q[node].push({nx,ny});
else q[node^1].push({nx,ny});
}
}
node^=1;
ans++;
}
cout<<ans-1<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |