# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
990964 | tincamatei | Maze (JOI23_ho_t3) | C++14 | 1151 ms | 279840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// If this is correct, God forgive my soul for trying to code the legit solution.
#include <bits/stdc++.h>
//int dl[] = {1, 0, -1, 0};
//int dc[] = {0, 1, 0,-1};
int size_diff[5] = {4, 2, 2, 2, 2};
std::vector<int> dl[5] = {
{0, 1, 0, -1},
{1, 0}, // goes towards DR
{1, 0}, // DL
{-1, 0}, // UL
{-1, 0} // UR
};
std::vector<int> dc[5] = {
{1, 0, -1, 0},
{0, 1},
{0,-1},
{0,-1},
{0, 1}
};
struct Matrix {
int R, C, N;
int B;
std::vector<int> corner_dl;
std::vector<int> corner_dc;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |