# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
790616 |
2023-07-23T01:04:41 Z |
Ronin13 |
Wombats (IOI13_wombats) |
C++17 |
|
2008 ms |
262144 KB |
#include <bits/stdc++.h>
#include "wombats.h"
#define ll long long
#define ull unsigned ll
#define f first
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define epb emplace_back
using namespace std;
const int nmax = 501;
int h[5000][200];
int v[5000][200];
int r, c;
int s;
struct node{
//vector <int> h;
vector <int> w;
vector <vector <int> > cost;
node(){
cost.resize(c);
for(int i = 0; i < c; i++)
cost[i].resize(c);
w.resize(c);
}
node(int c){
cost.resize(c);
for(int i = 0; i < c; i++)
cost[i].resize(c);
w.resize(c);
}
}t[3 * nmax];
node b[nmax];
node merg(node a, node b){
node c;
c.w = b.w;
int n = a.w.size();
c.cost.resize(n);
vector <vector <int> > opt;
opt.resize(n);
for(int i= 0; i < n; i++)
c.cost[i].resize(n), opt[i].resize(n);
for(int i = 0; i < n; i++){
int mn = 1e9 + 1, mni;
for(int j= 0; j < n; j++){
int val = a.cost[n - 1][j] + a.w[j] + b.cost[j][i];
if(val < mn)
mn = val, mni = j;
}
opt[n - 1][i] = mni, c.cost[n - 1][i] = mn;
}
for(int i = n - 2; i >= 0; i--){
int mn = 1e9 + 1,mni;
for(int j = 0; j < n; j++){
int val = a.cost[i][j] + a.w[j] + b.cost[j][0];
if(val < mn)
mn = val, mni = j;
}
opt[i][0] = mni, c.cost[i][0] = mn;
for(int j = 1; j <= n - 1; j++){
int mn = 1e9 + 1, mni = j;
for(int x = opt[i][j - 1]; x <= opt[i + 1][j]; x++){
int val = a.cost[i][x] + a.w[x] + b.cost[x][j];
if(val < mn)
mn = val, mni = x;
}
opt[i][j] = mni, c.cost[i][j] = mn;
}
}
return c;
}
void update(int v, int l, int r, int pos, node a){
if(l > pos || r < pos)
return;
if(l == r){
t[v] = a;
return;
}
int m = (l + r) / 2;
update(2 * v, l, m, pos, a);
update(2 * v + 1, m + 1, r, pos, a);
t[v] = merg(t[2 * v], t[2 * v + 1]);
}
void init(int R, int C, int H[5000][200], int V[5000][200]) {
/* ... */
r = R, c = C;
for(int i = 0; i < 5000; i++){
for(int j = 0; j < 200; j++)
h[i][j] = H[i][j], v[i][j] = V[i][j];
}
for(int i = 0; i < r; i++){
node a = {c};
for(int j = 0; j < c; j++)
a.w[j] = V[i][j];
for(int x = 0; x < c; x++){
a.cost[x][x] = 0;
for(int y = x + 1; y < c; ++y){
a.cost[x][y] = a.cost[x][y - 1] + H[i][y - 1];
}
for(int y = x - 1; y >= 0; y--)
a.cost[x][y] = a.cost[x][y + 1] + H[i][y];
}
if(i % 10 == 0)
b[i / 10] = a;
else b[i / 10] = merg(b[i / 10], a);
s = i / 10;
}
for(int i = 0; i <= 3 * s; i++)
t[i] = {c};
for(int i = 0; i <= s; i++)
update(1, 0, s, i, b[i]);
}
void update_block(int o){
// b[o] = a[o * 10];
int xx = o * 10;
for(int i = xx; i < min(r, xx + 10); i++){
node a = {c};
for(int j = 0; j < c; j++)
a.w[j] = v[i][j];
for(int x = 0; x < c; x++){
a.cost[x][x] = 0;
for(int y = x + 1; y < c; ++y){
a.cost[x][y] = a.cost[x][y - 1] + h[i][y - 1];
}
for(int y = x - 1; y >= 0; y--)
a.cost[x][y] = a.cost[x][y + 1] + h[i][y];
}
if(i % 10 == 0)
b[i / 10] = a;
else b[i / 10] = merg(b[i / 10], a);
}
update(1, 0, s, o, b[o]);
}
void changeH(int p, int q, int w) {
/* ... */
h[p][q] = w;
update_block(p / 10);
}
void changeV(int p, int q, int w) {
/* ... */
v[p][q] = w;
update_block(p / 10);
}
int escape(int V1, int V2) {
return t[1].cost[V1][V2];
}
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;
| ^~~
wombats.cpp: In function 'node merg(node, node)':
wombats.cpp:61:19: warning: 'mni' may be used uninitialized in this function [-Wmaybe-uninitialized]
61 | opt[i][0] = mni, c.cost[i][0] = mn;
wombats.cpp:52:23: warning: 'mni' may be used uninitialized in this function [-Wmaybe-uninitialized]
52 | opt[n - 1][i] = mni, c.cost[n - 1][i] = mn;
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
13 ms |
12244 KB |
Output is correct |
2 |
Correct |
13 ms |
12320 KB |
Output is correct |
3 |
Correct |
65 ms |
15080 KB |
Output is correct |
4 |
Correct |
13 ms |
12324 KB |
Output is correct |
5 |
Correct |
13 ms |
12364 KB |
Output is correct |
6 |
Correct |
5 ms |
8148 KB |
Output is correct |
7 |
Correct |
5 ms |
8148 KB |
Output is correct |
8 |
Correct |
5 ms |
8148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
8252 KB |
Output is correct |
2 |
Correct |
4 ms |
8144 KB |
Output is correct |
3 |
Correct |
4 ms |
8148 KB |
Output is correct |
4 |
Correct |
5 ms |
8276 KB |
Output is correct |
5 |
Correct |
5 ms |
8276 KB |
Output is correct |
6 |
Correct |
5 ms |
8276 KB |
Output is correct |
7 |
Correct |
5 ms |
8216 KB |
Output is correct |
8 |
Correct |
5 ms |
8276 KB |
Output is correct |
9 |
Correct |
5 ms |
8276 KB |
Output is correct |
10 |
Correct |
5 ms |
8276 KB |
Output is correct |
11 |
Correct |
60 ms |
10572 KB |
Output is correct |
12 |
Correct |
5 ms |
8284 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
149 ms |
10384 KB |
Output is correct |
2 |
Correct |
131 ms |
10400 KB |
Output is correct |
3 |
Correct |
163 ms |
10464 KB |
Output is correct |
4 |
Correct |
158 ms |
10468 KB |
Output is correct |
5 |
Correct |
158 ms |
10452 KB |
Output is correct |
6 |
Correct |
4 ms |
8148 KB |
Output is correct |
7 |
Correct |
5 ms |
8212 KB |
Output is correct |
8 |
Correct |
4 ms |
8148 KB |
Output is correct |
9 |
Correct |
600 ms |
10480 KB |
Output is correct |
10 |
Correct |
5 ms |
8148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
16484 KB |
Output is correct |
2 |
Correct |
17 ms |
16340 KB |
Output is correct |
3 |
Correct |
18 ms |
16436 KB |
Output is correct |
4 |
Correct |
46 ms |
17768 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
154 ms |
10324 KB |
Output is correct |
2 |
Correct |
129 ms |
10324 KB |
Output is correct |
3 |
Correct |
163 ms |
10472 KB |
Output is correct |
4 |
Correct |
158 ms |
10468 KB |
Output is correct |
5 |
Correct |
163 ms |
10452 KB |
Output is correct |
6 |
Correct |
18 ms |
16340 KB |
Output is correct |
7 |
Correct |
18 ms |
16428 KB |
Output is correct |
8 |
Correct |
18 ms |
16340 KB |
Output is correct |
9 |
Correct |
45 ms |
17784 KB |
Output is correct |
10 |
Correct |
13 ms |
12244 KB |
Output is correct |
11 |
Correct |
13 ms |
12368 KB |
Output is correct |
12 |
Correct |
65 ms |
15124 KB |
Output is correct |
13 |
Correct |
13 ms |
12308 KB |
Output is correct |
14 |
Correct |
13 ms |
12244 KB |
Output is correct |
15 |
Correct |
4 ms |
8148 KB |
Output is correct |
16 |
Correct |
5 ms |
8148 KB |
Output is correct |
17 |
Correct |
5 ms |
8148 KB |
Output is correct |
18 |
Correct |
5 ms |
8276 KB |
Output is correct |
19 |
Correct |
5 ms |
8216 KB |
Output is correct |
20 |
Correct |
5 ms |
8276 KB |
Output is correct |
21 |
Correct |
5 ms |
8220 KB |
Output is correct |
22 |
Correct |
5 ms |
8276 KB |
Output is correct |
23 |
Correct |
5 ms |
8276 KB |
Output is correct |
24 |
Correct |
5 ms |
8216 KB |
Output is correct |
25 |
Correct |
59 ms |
10640 KB |
Output is correct |
26 |
Correct |
5 ms |
8276 KB |
Output is correct |
27 |
Correct |
596 ms |
10456 KB |
Output is correct |
28 |
Correct |
1787 ms |
107736 KB |
Output is correct |
29 |
Correct |
1811 ms |
90440 KB |
Output is correct |
30 |
Correct |
1835 ms |
90356 KB |
Output is correct |
31 |
Correct |
1795 ms |
109432 KB |
Output is correct |
32 |
Correct |
5 ms |
8148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
155 ms |
10420 KB |
Output is correct |
2 |
Correct |
133 ms |
10428 KB |
Output is correct |
3 |
Correct |
161 ms |
10464 KB |
Output is correct |
4 |
Correct |
158 ms |
10452 KB |
Output is correct |
5 |
Correct |
161 ms |
10460 KB |
Output is correct |
6 |
Correct |
18 ms |
16340 KB |
Output is correct |
7 |
Correct |
18 ms |
16424 KB |
Output is correct |
8 |
Correct |
18 ms |
16432 KB |
Output is correct |
9 |
Correct |
45 ms |
17684 KB |
Output is correct |
10 |
Correct |
13 ms |
12244 KB |
Output is correct |
11 |
Correct |
13 ms |
12244 KB |
Output is correct |
12 |
Correct |
65 ms |
15092 KB |
Output is correct |
13 |
Correct |
15 ms |
12460 KB |
Output is correct |
14 |
Correct |
13 ms |
12324 KB |
Output is correct |
15 |
Runtime error |
2008 ms |
262144 KB |
Execution killed with signal 9 |
16 |
Halted |
0 ms |
0 KB |
- |