# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
651000 | MilosMilutinovic | 저울 (IOI15_scales) | C++14 | 31 ms | 992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: wxhtzdy
* created: 05.07.2022 11:10:33
**/
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 15000;
int root, ch[N][3], tsz;
struct query {
int type, a, b, c, d;
bool operator <(query p) const {
return type > p.type;
}
};
vector<query> queries;
query qq[N];
int Solve(query q, vector<int> p) {
assert((int) p.size() == 6);
assert(q.a >= 0 && q.a < 6);
assert(q.b >= 0 && q.b < 6);
assert(q.c >= 0 && q.c < 6);
assert(q.d >= 0 && q.d < 6);
if (q.type == 1) {
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |