# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1012002 | Unforgettablepl | Shopping (JOI21_shopping) | C++17 | 149 ms | 12764 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// THIS SHOULD ONLY GET 32 POINTS. GRADER APPEARS TO HAVE A BUG.
#include "Anna.h"
#include <vector>
#include <bits/stdc++.h>
using namespace std;
const int BLOCK_SIZE = 1382;
namespace {
int L, R;
vector<bool> buffer;
int ptr = 0;
bool read(){
assert(ptr<buffer.size());
return buffer[ptr++];
}
int get(int l,int r){
vector<int> depth(2*BLOCK_SIZE+1);
vector<int> p(2*BLOCK_SIZE+1);
vector<int> actual(2*BLOCK_SIZE+1);
int c = 0;
int act = 0;
int ll = -1,rr = -1;
function<void(int,int)> readtree = [&](int par,int dep){
p[c] = par;
depth[c] = dep;
int myc = c;
컴파일 시 표준 에러 (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... |