# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
642865 | ghostwriter | Mechanical Doll (IOI18_doll) | C++14 | 84 ms | 14264 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include <debug.h>
#include "grader.cpp"
#endif
#define st first
#define nd second
#define pb push_back
#define pf push_front
#define _pb pop_back
#define _pf pop_front
#define lb lower_bound
#define ub upper_bound
#define mtp make_tuple
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
typedef long long ll; typedef unsigned long long ull;
typedef double db; typedef long double ldb;
typedef pair<int, int> pi; typedef pair<ll, ll> pll;
typedef vector<int> vi; typedef vector<ll> vll; typedef vector<pi> vpi; typedef vector<pll> vpll;
typedef string str;
template<typename T> T gcd(T a, T b) { return (b == 0? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }
#define FOR(i, l, r) for (int (i) = (l); (i) <= (r); ++(i))
#define FOS(i, r, l) for (int (i) = (r); (i) >= (l); --(i))
#define EACH(i, x) for (auto &(i) : (x))
#define WHILE while
#define file "TEST"
mt19937 rd(chrono::steady_clock::now().time_since_epoch().count());
ll rand(ll l, ll r) { return uniform_int_distribution<ll>(l, r)(rd); }
/*
Tran The Bao
CTL - Da Lat
Cay ngay cay dem nhung deo duoc cong nhan
*/
const int MAXM = 1e5 + 5;
int d[MAXM];
namespace subtask123 {
vi next[MAXM];
void create_circuit(int M, vi A) {
vi C(M + 1, 0), X, Y;
int N = sz(A);
next[0].pb(A[0]);
FOR(i, 0, N - 1) next[A[i]].pb(i == N - 1? 0 : A[i + 1]);
int S = 0;
FOR(i, 0, M) {
if (next[i].empty()) {
C[i] = 0;
continue;
}
if (sz(next[i]) == 1) {
C[i] = next[i][0];
continue;
}
if (sz(next[i]) == 2) {
C[i] = --S;
X.pb(next[i][0]);
Y.pb(next[i][1]);
continue;
}
if (sz(next[i]) == 3) {
C[i] = --S;
X.pb(S - 1);
Y.pb(S - 2);
--S;
X.pb(next[i][0]);
Y.pb(next[i][1]);
--S;
X.pb(S + 2);
Y.pb(next[i][2]);
continue;
}
C[i] = --S;
X.pb(S - 1);
Y.pb(S - 2);
--S;
X.pb(next[i][0]);
Y.pb(next[i][2]);
--S;
X.pb(next[i][1]);
Y.pb(next[i][3]);
}
answer(C, X, Y);
}
}
void create_circuit(int M, std::vector<int> A) {
int N = A.size();
bool sub123 = 1;
FOR(i, 0, N - 1) {
++d[A[i]];
if (d[A[i]] > 4) sub123 = 0;
}
if (sub123) {
subtask123::create_circuit(M, A);
return;
}
}
/*
4 4
1 2 1 3
*/
Compilation message (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... |