# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
585503 | LIF | 자동 인형 (IOI18_doll) | C++14 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "doll.h"
void create_circuit(int M, std::vector<int> A) {
int N = A.size();
std::vector<int> x,y;
std::vector<int> c;
int n = N;
c[0] = 1;
std::vector<int> node[100005];
for(int i=1; i<=n-1; i++)
{
int qq = A[i];
node[qq].push_back(A[i+1]);
}
int xx = A[n];
node[xx].push_back(0);
int fir = 1 ;//that means the first case is 1 ,and we can create our plan.
for(int i=1;i<=M;i++) //that means we deal with the sensor.
{
int sum = node[i].size();
int num = 0;
if(sum == 1)
{
int kx = node[i][0];
c.push_back(kx);
}
else
{
sum+=1;
int dd=1;
int flag = 0;
for(int j=1;j<=100;j++)
{
dd*=2;
num = j; //that means we should create how many hiearachy
if(dd >= sum)
{
flag = 1;
break;
}
}
}
}
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... |