// #include "grader.c"
#include"wombats.h"
#include <bits/stdc++.h>
#define all(x) x.begin(), x.end()
#define ff first
#define ss second
using namespace std;
using ll = long long;
using pii = pair<int,int>;
template<typename T>
using matrix = vector<vector<T>>;
const int INF = 1e9;
struct matriz{
matrix<int> v;
matriz(int n = 0, int val = INF){
v = matrix<int>(n,vector<int>(n,val));
}
matriz operator*(matriz & other){
const int n = v.size();
matriz ret(n);
auto solve =[&](int source, int l, int r, int optl, int optr, auto solve) -> void {
if(r < l)
return;
int m = (l+r)>>1;
int opt = optl;
for (int i = optl+1; i <= optr; i++)
opt = min(opt,i,[&](int a, int b){
return v[source][a]+other.v[a][m] < v[source][b]+other.v[b][m];
});
ret.v[source][m] = v[source][opt]+other.v[opt][m];
solve(source,m+1,r,opt,optr,solve);
solve(source,l,m-1,optl,opt,solve);
};
for(int i = 0; i < n; i++)
solve(i,0,n-1,0,n-1,solve);
return ret;
}
};
int n, m;
vector<matriz> inrow;
vector<matriz> nextrow;
matrix<int> hor;
matrix<int> ver;
void build_in_row(int linha){
inrow[linha] = matriz(m,0);
for(int j = 0; j < m; j++){
int cur = 0;
for(int k = j; k < m-1; k++){
cur+=hor[linha][k];
inrow[linha].v[j][k+1] = inrow[linha].v[k+1][j] = cur;
}
}
}
void build_next(int linha){
assert(linha < n-1);
matriz col(m);
for(int i = 0; i < m; i++)
col.v[i][i] = ver[linha][i];
nextrow[linha] = inrow[linha]*col*inrow[linha+1];
}
void init(int R, int C, int H[5000][200], int V[5000][200]) {
// cerr << "ok" << endl;
n = R;
m = C;
// cerr << n << ' ' << m << endl;
hor = matrix<int>(n,vector<int>(m-1));
ver = matrix<int>(n-1,vector<int>(m));
// cerr << "ok" << endl;
for(int i = 0; i < n; i++){
for(int j = 0; j < m-1; j++)
hor[i][j] = H[i][j];
}
for(int i = 0; i < n-1; i++){
for(int j = 0; j < m; j++){
ver[i][j] = V[i][j];
}
}
inrow = vector<matriz>(n,matriz(m,0));
// cerr << "ok" << endl;
for(int i = 0; i < n; i++){
// cerr << i << endl;
build_in_row(i);
}
nextrow = vector<matriz>(n-1,matriz(m,0));
for(int i = 0; i < n-1; i++){
// cerr << i << endl;
build_next(i);
}
}
void changeH(int P, int Q, int W) {
// cerr << P << ' ' << Q << endl;
hor[P][Q] = W;
build_in_row(P);
build_next(P);
}
void changeV(int P, int Q, int W) {
// cerr << P << ' ' << Q << endl;
ver[P][Q] = W;
build_next(P);
}
int escape(int V1, int V2) {
// cerr << V1 << ' ' << V2 << endl;
matriz resp = nextrow[0];
for(int i = 1; i < n-1; i++){
resp = resp*nextrow[i];
}
return resp.v[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;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
142 ms |
5460 KB |
Output is correct |
2 |
Correct |
143 ms |
5460 KB |
Output is correct |
3 |
Execution timed out |
20097 ms |
6120 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
35 ms |
340 KB |
Output is correct |
5 |
Correct |
34 ms |
340 KB |
Output is correct |
6 |
Correct |
36 ms |
340 KB |
Output is correct |
7 |
Correct |
34 ms |
448 KB |
Output is correct |
8 |
Correct |
34 ms |
340 KB |
Output is correct |
9 |
Correct |
39 ms |
340 KB |
Output is correct |
10 |
Correct |
33 ms |
340 KB |
Output is correct |
11 |
Correct |
19788 ms |
1324 KB |
Output is correct |
12 |
Correct |
36 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
56 ms |
18372 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
534 ms |
10148 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
54 ms |
18388 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
53 ms |
18384 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |