제출 #1036428

#제출 시각아이디문제언어결과실행 시간메모리
1036428c2zi6웜뱃 (IOI13_wombats)C++14
0 / 100
10 ms18012 KiB
#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 = 4; struct PART; PART combine(PART& a, PART& b); struct PART { int d[MAXC][MAXC]; PART() { rep(i, MAXC) rep(j, MAXC) d[i][j] = 1e9; } int* operator[](int i) { return d[i]; } void combine(PART& b) { *this = ::combine(*this, b); } }; PART combine(PART& a, PART& b) { PART c; /*rep(i, MAXC) rep(j, MAXC) rep(m, MAXC) setmin(c[i][j], a[i][m] + b[m][j]);*/ /*return 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]; assert(0 <= mn && mx < MAXC); /*replr(m, mn, mx) {*/ replr(m, 0, MAXC-1) { 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; } vector<PART> a; int n, m; VVI H, V; PART answer; void recalc() { a = vector<PART>(n); rep(l, n) { replr(i, 0, m-1) { int sum = 0; replr(j, i, m-1) { a[l][i][j] = sum + V[l][j]; a[l][j][i] = sum + V[l][i]; sum += H[l][j]; } } } answer = a[0]; replr(i, 1, n-1) answer.combine(a[i]); } 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(); } void changeH(int P, int Q, int W) { H[P][Q] = W; recalc(); } void changeV(int P, int Q, int W) { V[P][Q] = W; recalc(); } int escape(int u, int v) { return answer[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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...