# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
94993 | Mohammad_Yasser | 자동 인형 (IOI18_doll) | C++14 | 68 ms | 8524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
struct Graph {
int S = 1;
int N = 2e5;
vector<int> X, Y, turn;
void build(int node, int level, int first_turn) {
if ((1 << level) > N) {
turn[node] = first_turn;
return;
}
X[node] = 2 * node;
Y[node] = 2 * node + 1;
build(X[node], level + 1, first_turn);
build(Y[node], level + 1, first_turn + (1 << level));
X[node] *= -1;
Y[node] *= -1;
}
void build() {
while (S < N) {
S <<= 1;
}
X.resize(S);
Y.resize(S);
turn = vector<int>(2 * S, -1);
build(1, 0, 0);
}
};
void create_circuit(int M, std::vector<int> A) {
Graph graph;
graph.build();
vector<int> C(M + 1);
for (int& x : C) {
x = -1;
}
for (int i = graph.S / 2; i < graph.S; ++i) {
if (graph.turn[-graph.X[i]] < A.size()) {
graph.X[i] = A[graph.turn[-graph.X[i]]];
} else {
graph.X[i] = -1;
}
if (graph.turn[-graph.Y[i]] < A.size()) {
graph.Y[i] = A[graph.turn[-graph.Y[i]]];
} else {
graph.Y[i] = -1;
}
}
graph.Y[graph.S - 1] = 0;
graph.X.erase(graph.X.begin());
graph.Y.erase(graph.Y.begin());
answer(C, graph.X, graph.Y);
}
컴파일 시 표준 에러 (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... |