# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
418448 | JediMaster11 | 자동 인형 (IOI18_doll) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fo(a, b, c) for (int a = b; a < c; a++)
#define ll long long
#define print(x) cout << x << "\n";
#define vint vector<int>
#define vll vector<long long>
// // should call
// // c - array of length m + 1, the exit of device i is c[i]
// // x, y - length s is the number of switches. exit 'X' of -i is connected to x[i-1] and same for Y
// // called once
// void answer(vint C, vint X, vint Y)
// {
// fo(i, 0, C.size())
// {
// print(C[i]);
// }
// print("");
// fo(i, 0, X.size())
// {
// print(X[i] << " " << Y[i]);
// }
// }
// m - number of triggers (doesnt include 0)
// a - array of length n, of the serial numbers of the triggers the ball needs to enter, in the correct order
void create_circuit(int m, vint a)
{
int n = a.size();
int numS = n - 1;
int c[] = {1,-1}, x[numS], y[numS];
int on = -2;
fo(i, 0, numS)
{
x[i]=1;
y[i]=on--;
}
y[numS - 1] = 0;
answer(c, x, y);
}
// int main()
// {
// ios::sync_with_stdio(0);
// cin.tie(0);
// vint a = {1, 1, 1, 1};
// create_circuit(1, a);
// }