답안 #823143

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
823143 2023-08-12T08:29:17 Z Trumling 자동 인형 (IOI18_doll) C++14
0 / 100
1 ms 296 KB
#include "doll.h"
#include<bits/stdc++.h>
using namespace  std;
#define F first 
#define S second 
#define all(x) x.begin(),x.end()  
typedef long long ll;
#define INF 99999999999999
#define pb  push_back

void create_circuit(int M, std::vector<int> A) {
  int N = A.size()+1;
  A.pb(0);
  vector<int> C(M + 1);
  vector<bool>vis(M+1,0);
  vector<int>sw(M+1,0);
  ll idx=0;

  vector<int> X, Y;

  for(int i=0;i<N-1;i++)
  {
    if(!vis[A[i]])
    {
        vis[A[i]]=1;
        X.pb(-(idx+1));
        Y.pb(A[i+1]);
        sw[A[i]]=idx++;
        continue;
    }
    ll curr=sw[A[i]];
    X[curr]=Y[curr];
    Y[curr]=A[i+1];
  }
  answer(C, X, Y);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 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 296 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 296 KB wrong motion
2 Halted 0 ms 0 KB -