# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3336 | wookayin | 일도양단! (kriii1_1) | C++98 | 4 ms | 2132 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
using namespace std;
int R, C, H, N;
int has[7][7][7];
struct xyz {
int x, y, z;
xyz(int x, int y, int z) : x(x), y(y), z(z) {}
};
vector<xyz> pos;
int count(int r1, int r2, int c1, int c2, int h1, int h2) {
int s = 0;
for(int i = 0; i < pos.size(); ++ i) {
xyz &q = pos[i];
if(r1 <= q.x && q.x <= r2 && c1 <= q.y && q.y <= c2 && h1 <= q.z && q.z <= h2)
s ++;
}
return s;
}
int cache[7][7][7][7][7][7];
int go(int r1, int r2, int c1, int c2, int h1, int h2) {
int &ret = cache[r1][r2][c1][c2][h1][h2];
if(ret != -1) return ret;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |