이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "wombats.h"
const int MAXC = 100;
const int PARTMAXVAL = 1e9;
const int GROUPSIZE = 10;
struct PART;
PART combine(PART& a, PART& b);
struct PART {
int d[MAXC][MAXC];
PART() {
rep(i, MAXC) rep(j, MAXC) d[i][j] = PARTMAXVAL;
}
int* operator[](int i) {
return d[i];
}
void combine(PART& b) {
*this = ::combine(*this, b);
}
};
int n, m;
VVI H, V;
PART combine(PART& a, PART& b) {
PART c;
int mid[MAXC][MAXC];
reprl(d, +MAXC, -MAXC) rep(i, MAXC) {
int j = i-d;
if (j < 0 || j >= MAXC) continue;
int mn = 0;
int mx = MAXC-1;
if (j-1 >= 0) mn = mid[i][j-1];
if (i+1 < MAXC) mx = mid[i+1][j];
mid[i][j] = mx;
replr(m, mn, mx) {
if (a[i][m] + b[m][j] < c[i][j]) {
c[i][j] = a[i][m] + b[m][j];
mid[i][j] = m;
}
}
}
return c;
}
void recalcpart(PART& p, int l) {
if (l >= n) {
p = PART();
rep(i, MAXC) p[i][i] = 0;
return;
}
replr(i, 0, m-1) {
int sum = 0;
replr(j, i, m-1) {
p[i][j] = sum + V[l][j];
p[j][i] = sum + V[l][i];
sum += H[l][j];
}
}
}
struct SEGTREE {
int n;
vector<PART> tree;
SEGTREE(){}
SEGTREE(int sz) {
n = 1;
while (n < sz) n *= 2;
tree = vector<PART>(2*n);
for (PART& p : tree) {
rep(i, MAXC) p[i][i] = 0;
}
}
void upd(int N, int L, int R, int i) {
int g = i/GROUPSIZE;
if (g < L || g > R) return;
if (L == R) {
/*cout << "UPDATE ENDED AT LEAF " << N << endl;*/
/*cout << "GROUP: " << g << endl;*/
/*cout << "INDEX: " << i << endl;*/
/*cout << "GROUP RANGE: " << g*GROUPSIZE << ".." << (g+1)*GROUPSIZE-1 << endl;*/
bool f = true;
PART tmp;
replr(j, g*GROUPSIZE, (g+1)*GROUPSIZE-1) {
/*cout << "RECALCULATED LAYER " << j << endl;*/
recalcpart(tmp, j);
if (f) tree[N] = tmp, f = false;
else tree[N] = combine(tree[N], tmp);
}
return;
}
int M = (L + R) / 2;
upd(2*N+1, L, M, i);
upd(2*N+2, M+1, R, i);
tree[N] = combine(tree[2*N+1], tree[2*N+2]);
}
void upd(int i) {
upd(0, 0, n-1, i);
}
} seg;
void init(int R, int C, int H_arg[5000][200], int V_arg[5000][200]) {
n = R;
m = C;
H = V = VVI(n, VI(m));
rep(i, n) rep(j, m-1) H[i][j] = H_arg[i][j];
rep(i, n-1) rep(j, m) V[i][j] = V_arg[i][j];
/*recalc();*/
seg = SEGTREE((n+GROUPSIZE-1)/GROUPSIZE);
rep(i, n) seg.upd(i);
}
void changeH(int P, int Q, int W) {
H[P][Q] = W;
seg.upd(P);
}
void changeV(int P, int Q, int W) {
V[P][Q] = W;
seg.upd(P);
}
int escape(int u, int v) {
return seg.tree[0][u][v];
}
컴파일 시 표준 에러 (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;
| ^~~
# | 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... |