이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
char g[4005][4005];
int ans[4005][4005];
int dx[] = {0,1,0,-1}, dy[] = {1, 0, -1, 0};
inline int ReadInt() {
int x = 0;
char ch = getchar();
while (ch < '0' || ch > '9') ch = getchar();
while (ch >= '0' && ch <= '9'){
x = (x << 3) + (x << 1) + ch - '0';
ch = getchar();
}
return x;
}
main(){
ios::sync_with_stdio(0);cin.tie(0);
int h,w,maxi = 0;
cin >> h >> w;
for(int i=1;i<=h;i++){
for(int j=1;j<=w;j++){
cin >> g[i][j];
}
}
for(int i=1;i<=4000;i++)fill(ans[i] , ans[i] + 4005, 2e9 +5);
queue<pair<int, int> >q;
q.push(make_pair(1, 1));
ans[1][1] = 0;
while(!q.empty()){
int x = q.front().first;
int y = q.front().second;
q.pop();
if(x == h && y == w)continue;
for(int i=0;i<4;i++){
int x1 = x + dx[i];
int y1 = y + dy[i];
if(x1 < 1 || x1 > h || y1 < 1 ||y1 > w)continue;
if(g[x1][y1] == '.')continue;
int ans1 = ans[x][y];
if(g[x1][y1] != g[x][y])ans1++;
if(ans[x1][y1] > ans1){
ans[x1][y1] = ans1;
q.push(make_pair(x1, y1));
}
}
}
for(int i=1;i<=h;i++){
for(int j=1;j<=w;j++){
if(g[i][j] == '.')continue;
maxi = max(maxi, ans[i][j]);
}
}
cout << maxi + 1;
}
컴파일 시 표준 에러 (stderr) 메시지
tracks.cpp:17:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
17 | main(){
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |