Submission #946495

#TimeUsernameProblemLanguageResultExecution timeMemory
946495PagodePaiva자동 인형 (IOI18_doll)C++17
6 / 100
50 ms13732 KiB
#include "doll.h"
#include<bits/stdc++.h>

using namespace std;

void create_circuit(int M, std::vector<int> A) {
  vector <int> v;
  v.push_back(0);
  for(auto x : A) v.push_back(x);
  int m = M;
  int n = v.size();
  vector <int> c, x, y;
  vector <int> g[m+1];
  v.push_back(0);
  for(int i = 0;i < (int) (v.size()) - 1;i++){
    int val = v[i], nx = v[i+1];
    g[val].push_back(nx);
  }
  int tp = -1;
  for(int i = 0;i <= m;i++){
    if(g[i].size() == 0) {
      c.push_back(0);
      continue;
    }
    if(g[i].size() == 1){
      c.push_back(g[i][0]);
      continue;
    }
    if(g[i].size() == 2){
      c.push_back(tp);
      x.push_back(g[i][0]);
      y.push_back(g[i][1]);
      tp--;
      continue;
    }
    if(g[i].size() == 3){
      c.push_back(tp);
      tp--;
      x.push_back(tp);
      y.push_back(g[i][2]);
      x.push_back(g[i][0]);
      y.push_back(g[i][1]);
      tp--;
      continue;
    }
    if(g[i].size() == 4){
      c.push_back(tp);
      tp--;
      x.push_back(tp);
      y.push_back(tp-1);
      x.push_back(g[i][0]);
      y.push_back(g[i][1]);
      tp--;
      tp--;
      x.push_back(g[i][2]);
      y.push_back(g[i][3]);
    }
  }
  // for(auto t : c){
  //   cout << t << ' ';
  // }
  answer(c, x, y);
  return;
}

Compilation message (stderr)

doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:11:7: warning: unused variable 'n' [-Wunused-variable]
   11 |   int n = v.size();
      |       ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...