# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
75298 | KieranHorgan | 자동 인형 (IOI18_doll) | C++17 | 66 ms | 10436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> A, X, Y, C;
int dep[200];
int nextSwitch = -1;
vector<int> AdjList[200005];
void buildTree(int curSwitch, int curTrigger) {
}
void create_circuit(int M, vector<int> A_) {
A = A_;
AdjList[0].push_back(A[0]);
for(int i = 0; i+1 < A.size(); i++) {
AdjList[A[i]].push_back(A[i+1]);
}
AdjList[A.back()].push_back(0);
C.assign(M+1, 0);
for(int i = 0; i <= M; i++) {
if(AdjList[i].size() == 0) {
} else if(AdjList[i].size() == 1) {
C[i] = AdjList[i][0];
} else {
C[i] = nextSwitch--;
buildTree(C[i], i);
}
}
// cerr << nextSwitch << endl;
// for(int i = 1; dep[i]; i++)
// cerr << i << ": " << dep[i] << endl;
//
// cerr << N << " " << X.size() << endl;
answer(C, X, 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... |