답안 #624292

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
624292 2022-08-07T16:52:03 Z moyindavid 자동 인형 (IOI18_doll) C++17
0 / 100
0 ms 212 KB
#include "doll.h"
#include <bits/stdc++.h>
#define pb push_back
#define ll long long

using namespace std;

void create_circuit(int M, vector<int> A) {
  int N = A.size();
  vector<int> C(M+1);
  set<int> s;
  for(int i=0;i<M;i++)C[i]=0;
  C[0]=A[0];
  for (int i = 1; i < N; ++i) {
    C[A[i-1]]=A[i];
  }


  C[M]=0;

  vector<int> X={},Y={};
  answer(C, X, Y);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -