# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1163619 | irmuun | Mechanical Doll (IOI18_doll) | C++20 | 109 ms | 14432 KiB |
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
#define rall(s) s.rbegin(),s.rend()
void create_circuit(int M,vector<int>A) {
int N=A.size();
vector<int>C(M+1);
fill(all(C),-1);
vector<int>X(4*N,0),Y(4*N,0);
int len=0;
vector<int>row={1};
while(row.size()*2<=N){
vector<int>vec;
for(int i:row){
X[i]=-(2*i);
Y[i]=-(2*i+1);
vec.pb(2*i);
vec.pb(2*i+1);
}
row=vec;
}
for(int i:row){
# | 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... |