# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1162753 | PagodePaiva | Mechanical Doll (IOI18_doll) | C++17 | 71 ms | 16552 KiB |
#include<bits/stdc++.h>
#include "doll.h"
using namespace std;
const int M = 200010;
vector <int> cnt[M];
int at = -1;
vector <int> c, x, y;
void solve(int valor){
if(cnt[valor].empty()) {
c.push_back(valor);
return;
}
queue <pair <vector <int>, int>> ans;
for(auto v : cnt[valor]){
ans.push({{v}, v});
}
int cnt = 1;
while(cnt < ans.size()){
cnt *= 2;
}
while(ans.size() < cnt){
ans.push({{M}, valor});
}
while(ans.size() > 1){
auto [a, rep] = ans.front();
ans.pop();
# | 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... |