# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
140421 | arthurconmy | 자동 인형 (IOI18_doll) | C++14 | 3 ms | 2636 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef ARTHUR_LOCAL
#include "doll.h"
#endif
using namespace std;
const int MAXN=100000;
int apps[MAXN];
vector<int> go_to[MAXN];
void create_circuit(int m, vector<int> A)
{
int n = A.size();
for(int i=0; i<n-1; i++)
{
go_to[A[i]].push_back(A[i+1]);
}
vector<int> C={A[0]};
int switch_no=0;
vector<int> X;
vector<int> Y;
for(int i=0; i<m; i++)
{
if(go_to[i].empty())
{
C.push_back(0);
continue;
}
if(go_to[i].size() == 1)
{
C.push_back(go_to[i][0]);
continue;
}
// if(go_to[i].size() == 2)
// {
// switch_no++;
// C.push_back(-switch_no);
// X.push_back()
// }
}
answer(C,X,Y);
}
#ifdef ARTHUR_LOCAL
int main()
{
cout << "HELLO" << endl;
}
#endif
컴파일 시 표준 에러 (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... |