# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
727909 | ace_in_the_hole | Tracks in the Snow (BOI13_tracks) | C++17 | 806 ms | 137028 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
//https://oj.uz/problem/view/BOI13_tracks
typedef long long Int;
const int N = 4005;
char board[N][N];
int dist[N][N];
using Cell = pair<int,int>;
#define x first
#define y second
#define all(v) (v).begin(), (v).end()
#define cst(T) const T&
template<class A, class B> bool umin(A& var, cst(B) val) {
return (val < var) ? (var = val, true) : false;
}
template<class A, class B> bool umax(A& var, cst(B) val) {
return (var < val) ? (var = val, true) : false;
}
const int INF = 1e9;
const int dx[] {-1,+1, 0, 0};
const int dy[] { 0, 0,-1,+1};
void solve()
{
int hei, wid;
cin >> hei >> wid;
for (int i = 1; i <= hei; i++)
for (int j = 1; j <= wid; j++) {
dist[i][j] = INF;
cin >> board[i][j];
}
deque<Cell> bfs;
bfs.push_front(Cell(1,1));
dist[1][1] = 1;
int ans = 0;
while (!bfs.empty()) {
auto u = bfs.front(); bfs.pop_front();
umax(ans, dist[u.x][u.y]);
for (int d = 0; d < 4; d++) {
Cell v(u.x + dx[d], u.y + dy[d]);
if (min(v.x,v.x) < 1 or v.x > hei or v.y > wid) continue;
int edge = (board[v.x][v.y] != board[u.x][u.y]);
if (umin(dist[v.x][v.y], dist[u.x][u.y] + edge))
edge ? bfs.push_back(v) : bfs.push_front(v);
}
}
cout << ans;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#define task "WF"
if (fopen(task".inp", "r")) {
freopen(task".inp", "r", stdin);
freopen(task".out", "w", stdout);
}
solve();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |