#include "doll.h"
#pragma GCC optimize("O1,O2,O3,Ofast,unroll-loops")
#include <bits/stdc++.h>
#include <string>
#include <iostream>
#include <cmath>
#include <numeric>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int> pi;
typedef pair<int, int> pl;
typedef pair<ld, ld> pd;
typedef vector<int> vi;
typedef vector<bool> vb;
typedef vector<vector<int>> vvi;
typedef vector<ld> vd;
typedef vector<ll> vl;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
#define FOR(i, a, b) for (int i = a; i < (b); i++)
#define F0R(i, a) for (int i = 0; i < (a); i++)
#define FORd(i, a, b) for (int i = (b)-1; i >= a; i--)
#define F0Rd(i, a) for (int i = (a)-1; i >= 0; i--)
#define trav(a, x) for (auto &a : x)
#define uid(a, b) uniform_int_distribution<int>(a, b)(rng)
#define len(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define F first
#define nl endl
#define S second
#define lb lower_bound
#define ub upper_bound
#define aint(x) x.begin(), x.end()
#define raint(x) x.rbegin(), x.rend()
#define ins insert
const int MOD = 1000000007;
int N,M;
void create_circuit(int m, vi A) {
A.pb(0);
N = A.size();M=m;
vi C(M + 1,0),X,Y;
vvi counters(M+1,vi());
FOR(i,0,N-1){
counters[A[i]].pb(A[i+1]);
}
int mx = 0;
FOR(i,0,M+1){
mx = max(mx,int(counters[i].size()));
}
counters[0].pb(A[0]);
// FOR(i,0,M+1){
// cout << i << " {";
// for(int j:counters[i])cout<<j << " ,";
// cout<<"}"<<endl;
// }
if(false){
// if(mx==4){
FOR(i,0,M+1){
if(counters[i].size() == 1){
C[i] = counters[i][0];
}else if(counters[i].size() == 2){
X.pb(counters[i][0]);
Y.pb(counters[i][1]);
C[i] = X.size()*-1;
}else if(counters[i].size() == 3){
int k = -X.size();
C[i] = k-1;
X.pb(k-2);
Y.pb(k-3);
X.pb(counters[i][0]);
Y.pb(k-1);
X.pb(counters[i][1]);
Y.pb(counters[i][2]);
}else if(counters[i].size() == 4){
int k = -X.size();
C[i] = k-1;
X.pb(k-2);
Y.pb(k-3);
X.pb(counters[i][0]);
Y.pb(counters[i][2]);
X.pb(counters[i][1]);
Y.pb(counters[i][3]);
}
}
C[0] = A[0];
// FOR(i,0,M+1)cout << C[i] << " ";
// cout << endl;
// FOR(i,0,X.size())cout << X[i] << " " << Y[i] << endl;
answer(C, X, Y);
return;
}
FOR(i,0,M+1){
if(counters[i].size() == 0)continue;
if(counters[i].size() == 1){
C[i] = counters[i][0];
continue;
}
int num = ceil(log2(counters[i].size()));
// int k = -X.size();
vi X1,Y1;
C[i] = -1;
FOR(j,0,num-1){
X1.pb(-1-j);
Y1.pb(-1-j);
}
// cout << i << " " << counters[i].size() << " " << num << endl;
vector<pair<string,int>> arr(pow(2,num));
FOR(j,0,pow(2,num)){
string a = "";
int k = j;
FOR(l,0,num){
if(k%2 == 1)a += "1";
else a += "0";
k/=2;
}
reverse(a.begin(),a.end());
arr[j] = {a,j};
}
sort(arr.begin(),arr.end());
for(int j = 0;j < pow(2,num);j+=2){
if(arr[j].S < counters[i].size())
X1.pb(counters[i][arr[j].S]);
else
X1.pb(-1);
if(arr[j+1].S < counters[i].size())
Y1.pb(counters[i][arr[j+1].S]);
else
Y1.pb(-1);
}
// for(int x:X1)cout << x << " ";
// cout << endl;
// for(int y:Y1)cout << y << " ";
// cout << endl;
vi used(X1.size(),0);
for(int j = X1.size()-1;j>-1;j--){
if(X1[j] != -1){
if(2*j+1 < X1.size()){
if(used[2*j+1] > 0){
used[(j-1)/2]++;
}
}else{
used[(j-1)/2]++;
}
}
if(Y1[j] != -1){
if(2*j+2 < Y1.size()){
if(used[2*j+2] > 0){
used[(j-1)/2]++;
}
}else{
used[(j-1)/2]++;
}
}
}
int k = -X.size();
FOR(j,0,X1.size()){
if(used[j]>0){
X.pb(X1[j]+k);
Y.pb(Y1[j]+k);
}
}
}
// for(int x:X)cout << x << " ";
// cout << endl;
// for(int y:Y)cout << y << " ";
// cout << endl;
answer(C, X, Y);
}
Compilation message
doll.cpp: In function 'void create_circuit(int, vi)':
doll.cpp:139:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
139 | if(arr[j].S < counters[i].size())
doll.cpp:144:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
144 | if(arr[j+1].S < counters[i].size())
doll.cpp:158:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
158 | if(2*j+1 < X1.size()){
| ~~~~~~^~~~~~~~~~~
doll.cpp:167:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
167 | if(2*j+2 < Y1.size()){
| ~~~~~~^~~~~~~~~~~
doll.cpp:22:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | #define FOR(i, a, b) for (int i = a; i < (b); i++)
| ^
doll.cpp:179:5: note: in expansion of macro 'FOR'
179 | FOR(j,0,X1.size()){
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
24 ms |
6896 KB |
Output is correct |
3 |
Correct |
14 ms |
5720 KB |
Output is correct |
4 |
Correct |
0 ms |
440 KB |
Output is correct |
5 |
Correct |
9 ms |
3932 KB |
Output is correct |
6 |
Correct |
23 ms |
8400 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
24 ms |
6896 KB |
Output is correct |
3 |
Correct |
14 ms |
5720 KB |
Output is correct |
4 |
Correct |
0 ms |
440 KB |
Output is correct |
5 |
Correct |
9 ms |
3932 KB |
Output is correct |
6 |
Correct |
23 ms |
8400 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
8 |
Incorrect |
45 ms |
8280 KB |
wrong motion |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
24 ms |
6896 KB |
Output is correct |
3 |
Correct |
14 ms |
5720 KB |
Output is correct |
4 |
Correct |
0 ms |
440 KB |
Output is correct |
5 |
Correct |
9 ms |
3932 KB |
Output is correct |
6 |
Correct |
23 ms |
8400 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
8 |
Incorrect |
45 ms |
8280 KB |
wrong motion |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
over 20000000 inversions |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
wrong motion |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
wrong motion |
2 |
Halted |
0 ms |
0 KB |
- |