Submission #680072

#TimeUsernameProblemLanguageResultExecution timeMemory
680072bashkortWombats (IOI13_wombats)C++17
100 / 100
10359 ms68800 KiB
#include <bits/stdc++.h> #include "wombats.h" using namespace std; inline bool ckmin(int &a, int b) { return (a > b) && (a = b, true); } constexpr int B = 70, R = 5000, C = 200, K = (R + B - 1) / B + 1; const int N = K * 2; int r, c, need, sz = 1; int dp[2 * N][C][C], fr[K][C][C], H[R][C], V[R][C]; void pull(int x) { memset(dp[x], 0x3f, sizeof(dp[x])); if (dp[x << 1 | 1][0][0] == -1) { memcpy(dp[x], dp[x << 1], sizeof(dp[x])); return; } for (int cc = 0; cc < c; ++cc) { auto solve = [&](auto solve, int l, int r, int optl, int optr) -> void { if (l >= r) { return; } int mid = (l + r) >> 1; int opt = optl; for (int b = optl; b <= optr; ++b) { if (ckmin(dp[x][cc][mid], dp[x << 1][cc][b] + dp[x << 1 | 1][b][mid])) { opt = b; } } solve(solve, l, mid, optl, opt), solve(solve, mid + 1, r, opt, optr); }; solve(solve, 0, c, 0, c - 1); } } void update_fr(int L) { if (L < 0) { return; } int lim = max(0, B * L - 1); if (lim < r) { memset(fr[L], 0x3f, sizeof(fr[L])); for (int a = 0; a < c; ++a) { fr[L][a][a] = 0; } for (int i = min(r, B * (L + 1)) - 1; i >= lim; --i) { for (int a = 0; a < c - 1; ++a) { for (int b = 0; b < c; ++b) { ckmin(fr[L][a + 1][b], fr[L][a][b] + H[i][a]); } } for (int a = c - 2; a >= 0; --a) { for (int b = 0; b < c; ++b) { ckmin(fr[L][a][b], fr[L][a + 1][b] + H[i][a]); } } if (i != lim) { for (int a = 0; a < c; ++a) { for (int b = 0; b < c; ++b) { fr[L][a][b] += V[i - 1][a]; } } } } memcpy(dp[sz + L], fr[L], sizeof(dp[sz + L])); } else { memset(dp[sz + L], -1, sizeof(dp[sz + L])); } for (int x = sz + L; x >>= 1;) { pull(x); } } void init(int R, int C, int H[5000][200], int V[5000][200]) { r = R, c = C; memcpy(::H, H, sizeof(::H)), memcpy(::V, V, sizeof(::V)); need = r / B + 1; sz = 1 << __lg(need) + bool(need & (need - 1)); for (int i = 0; i < sz; ++i) { update_fr(i); } } void changeH(int P, int Q, int W) { H[P][Q] = W; update_fr(P / B); if ((P + 1) % B == 0 && P / B + 1 < need) { update_fr(P / B + 1); } } void changeV(int P, int Q, int W) { V[P][Q] = W; update_fr((P + 1) / B); } int escape(int V1, int V2) { return dp[1][V1][V2]; }

Compilation message (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 'void init(int, int, int (*)[200], int (*)[200])':
wombats.cpp:96:26: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
   96 |     sz = 1 << __lg(need) + bool(need & (need - 1));
      |               ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#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...