이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast,O2,O3,unroll-loops")
#pragma GCC target("avx2")
#include "wombats.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 3e2;
int HOR[5000][200], VER[5000][200];
int get_weight(int x, int y, char c){
// if (c == 'U') return VER[x - 1][y];
if (c == 'D') return VER[x][y];
if (c == 'L') return HOR[x][y - 1];
if (c == 'R') return HOR[x][y];
assert(false);
return -1;
}
vector<int> dv;
string dc = "RDL";
int N, M;
int get_weight(int x, char c){
return get_weight(x / M, x % M, c);
}
#define MP make_pair
int pref[MAXN];
void init(int R, int C, int _H[5000][200], int _V[5000][200]) {
N = R, M = C;
for (int i = 0; i < N; i++){
for (int j = 0; j < M; j++){
if (j < M - 1) HOR[i][j] = _H[i][j];
if (i < N - 1) VER[i][j] = _V[i][j];
}
if (i < N - 1){
pref[i] = VER[i][0];
if (i > 0) pref[i] += pref[i - 1];
}
}
dv = {1, M, -1};
}
void changeH(int P, int Q, int W) {
HOR[P][Q] = W;
}
void changeV(int P, int Q, int W) {
VER[P][Q] = W;
}
int escape(int V1, int V2) {
if (M == 1){
return pref[V2 - 1] - (V1 > 0 ? pref[V1 - 1] : 0);
}
priority_queue<pair<int, int>> pq;
pq.push(MP(0, V1));
vector<int> d(N * M, 2e9 + 5);
vector<bool> processed(N * M, false);
d[V1] = 0;
while (!pq.empty()){
int x = pq.top().second; pq.pop();
if (processed[x]) continue;
processed[x] = true;
for (int i = 0; i < 3; i++){
int y = x + dv[i];
if (y >= N * M || x % M == M - 1 && dc[i] == 'R' || x % M == 0 && dc[i] == 'L') continue;
int w = get_weight(x, dc[i]);
if (d[y] > d[x] + w){
d[y] = d[x] + w;
pq.push(MP(-d[y], y));
}
}
}
return d[(N - 1) * M + V2];
}
컴파일 시 표준 에러 (stderr) 메시지
grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
15 | int res;
| ^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:79:46: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
79 | if (y >= N * M || x % M == M - 1 && dc[i] == 'R' || x % M == 0 && dc[i] == 'L') continue;
| ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
wombats.cpp:79:76: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
79 | if (y >= N * M || x % M == M - 1 && dc[i] == 'R' || x % M == 0 && dc[i] == 'L') continue;
| ~~~~~~~~~~~^~~~~~~~~~~~~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |