# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
631860 | jhnah917 | Shopping Plans (CCO20_day2problem3) | C++14 | 309 ms | 131484 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
mt19937 RNG(0x917917);
// https://judge.yosupo.jp/submission/71648
class K_Shortest {
private:
template <typename T>
struct heap_node {
std::array<heap_node*, 2> c;
char is_set = 0;
T key;
friend heap_node* insert(heap_node* a, T new_key) {
if (!a || new_key.first < a->key.first) {
heap_node* n = new heap_node;
n->c = {a, nullptr};
n->key = new_key;
n->is_set |= 1;
return n;
}
a = new heap_node(*a);
int z = RNG() & 1;
a->c[z] = insert(a->c[z], new_key);
a->is_set |= 1 << z;
return a;
}
컴파일 시 표준 에러 (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... |