# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
764114 |
2023-06-23T07:20:32 Z |
ymm |
Wombats (IOI13_wombats) |
C++17 |
|
18903 ms |
19960 KB |
#include "wombats.h"
#include <bits/stdc++.h>
#define Loop(x, l, r) for (ll x = (l); x < (r); ++x)
#define LoopR(x, l, r) for (ll x = (r)-1; x >= (l); --x)
typedef long long ll;
typedef std::pair<int,int> pii;
typedef std::pair<ll ,ll > pll;
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2")
const int R = 5000;
int r;
const int C = 100;
const int Q = 500;
const int vs = 4;
typedef int vec __attribute__((vector_size(4*vs), aligned(4*vs)));
vec H[R][C/vs], V[R][C];
vec PS[R][C/vs];
vec ans[C][C/vs];
#define MIN(x, y) ((x)<(y)?(x):(y))
void to_right(vec *ans, int p)
{
Loop (i,0,C/vs-1)
ans[i+1] = MIN(ans[i+1], ans[i] + H[p][i]);
int mn = 1e9;
vec x;
x[0] = mn;
Loop (i,0,vs-1) {
mn = MIN(mn, ans[C/vs-1][i] - PS[p][C/vs-1][i]);
x[i+1] = mn;
}
Loop (i,0,C/vs)
ans[i] = MIN(ans[i], x + PS[p][i]);
}
void to_left(vec *ans, int p)
{
LoopR (i,0,C/vs-1)
ans[i] = MIN(ans[i], ans[i+1] + H[p][i]);
int mn = 1e9;
vec x;
x[vs-1] = mn;
LoopR (i,0,vs-1) {
mn = MIN(mn, ans[0][i+1] + PS[p][0][i+1]);
x[i] = mn;
}
LoopR (i,0,C/vs)
ans[i] = MIN(ans[i], x - PS[p][i]);
}
void down(vec *ans, int p)
{
Loop (i,0,C/vs)
ans[i] += V[p][i];
}
void recalc(vec *ans)
{
}
void recalc()
{
Loop (i,0,C) {
Loop (x,0,C/vs) Loop (y,0,vs)
ans[i][x][y] = 1e6;
ans[i][i % (C/vs)][i / (C/vs)] = 0;
recalc(ans[i]);
}
Loop (i,0,r-1) {
Loop (p,0,C) {
to_right(ans[p], i);
to_left(ans[p], i);
}
Loop (p,0,C)
down(ans[p], i);
}
Loop (p,0,C) {
to_left(ans[p], r-1);
to_right(ans[p], r-1);
}
}
void recalc_ps(int p)
{
Loop (i,0,vs)
PS[p][0][i] = 0;
Loop (i,0,C/vs-1)
PS[p][i+1] = PS[p][i] + H[p][i];
vec x = {};
Loop (i,0,vs-1)
x[i+1] = x[i] + PS[p][C/vs-1][i] + H[p][C/vs-1][i];
Loop (i,0,C/vs)
PS[p][i] += x;
}
void init(int r, int c, int h[5000][200], int v[5000][200]) {
::r = r;
Loop (i,0,r) Loop (j,0,C-1) {
int x = j < c-1? h[i][j]: 1001;
H[i][j % (C/vs)][j / (C/vs)] = x;
}
Loop (i,0,r-1) Loop (j,0,C) {
int x = j < c? v[i][j]: 1001;
V[i][j % (C/vs)][j / (C/vs)] = x;
}
Loop (i,0,r)
recalc_ps(i);
recalc();
}
void changeH(int P, int Q, int W) {
H[P][Q % (C/vs)][Q / (C/vs)] = W;
recalc_ps(P);
recalc();
}
void changeV(int P, int Q, int W) {
V[P][Q % (C/vs)][Q / (C/vs)] = W;
recalc();
}
int escape(int V1, int V2) {
return ans[r-1][V2 % (C/vs)][V2 / (C/vs)];
}
Compilation message
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 |
1 |
Correct |
18497 ms |
16004 KB |
Output is correct |
2 |
Incorrect |
18608 ms |
16016 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
77 ms |
828 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18903 ms |
19960 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
76 ms |
832 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
76 ms |
836 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |