# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
782334 | faruk | 자동 인형 (IOI18_doll) | C++17 | 87 ms | 15744 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> X, Y, C;
struct trigger {
int id;
int type;
trigger() {}
trigger(int typ) {
if (typ != 0) {
id = typ;
type = 1;
} else {
id = X.size();
X.push_back(0);
Y.push_back(0);
type = 0;
}
}
void connect_parent(int par) {
C[par] = -id;
}
void connect_X(trigger x) {
if (x.type == 0)
X[id - 1] = -x.id;
Compilation message (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... |