Submission #542809

#TimeUsernameProblemLanguageResultExecution timeMemory
542809Sho10Mechanical Doll (IOI18_doll)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho
#include "doll.h"
using ll=int;
int const nmax = 400000;
using namespace std;
ll leftp[nmax+1],rightp[nmax+1],cng[nmax+1],real[nmax+1],switches=0,added=0;
vector<int>a;
ll creategraph(ll nodes,ll realnodes){
if(realnodes==0){
    return -1;
}
if(nodes==1){
    return (added++);
}
ll centr=-(++switches);
leftp[-centr]=creategraph(nodes/2,realnodes-min(int(nodes/2),realnodes));
rightp[-centr]=creategraph(nodes/2,min(int(nodes/2),realnodes));
return centr;
}
ll dfs(ll node){
if(node>=0){
    return node;
}else {
cng[-node]=(!cng[-node]);
if(b[-node]==1){
    dfs(leftp[-node]);
}else dfs(rightp[-node]);
}
}
void create_circuit(int M,vector<int>A){
vector<int>C(M+1);
C[0]=-1;
for(int i=1;i<=M;i++)
{
    C[i]=-1;
}
for(ll i=0;i<A.size();i++)
{
    a.push_back(A[i]);
}
a.push_back(0);
int nodes=1;
while(nodes<a.size()){
    nodes*=2;
}
creategraph(nodes,a.size());
for(int i=0;i<a.size();i++)
{
    real[dfs(-1)]=a[i];
}
vector<int>X(switches),Y(switches);
for(ll k=1;k<=switches;k++)
{
    X[k-1]=leftp[k];
    Y[k-1]=rightp[k];
    if(X[k-1]>=0){
        X[k-1]=real[X[k-1]];
    }
    if(Y[k-1]>=0){
            Y[k-1]=real[Y[k-1]];
}
}
answer(C,X,Y);
}

Compilation message (stderr)

doll.cpp: In function 'll dfs(ll)':
doll.cpp:25:4: error: 'b' was not declared in this scope
   25 | if(b[-node]==1){
      |    ^
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:37:13: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 | for(ll i=0;i<A.size();i++)
      |            ~^~~~~~~~~
doll.cpp:43:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 | while(nodes<a.size()){
      |       ~~~~~^~~~~~~~~
doll.cpp:47:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 | for(int i=0;i<a.size();i++)
      |             ~^~~~~~~~~
doll.cpp:49:5: error: reference to 'real' is ambiguous
   49 |     real[dfs(-1)]=a[i];
      |     ^~~~
In file included from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from doll.cpp:1:
/usr/include/c++/10/complex:1874:5: note: candidates are: 'template<class _Tp> constexpr typename __gnu_cxx::__promote<_Tp>::__type std::real(_Tp)'
 1874 |     real(_Tp __x)
      |     ^~~~
/usr/include/c++/10/complex:568:5: note:                 'template<class _Tp> constexpr _Tp std::real(const std::complex<_Tp>&)'
  568 |     real(const complex<_Tp>& __z)
      |     ^~~~
doll.cpp:6:45: note:                 'll real [400001]'
    6 | ll leftp[nmax+1],rightp[nmax+1],cng[nmax+1],real[nmax+1],switches=0,added=0;
      |                                             ^~~~
doll.cpp:57:16: error: reference to 'real' is ambiguous
   57 |         X[k-1]=real[X[k-1]];
      |                ^~~~
In file included from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from doll.cpp:1:
/usr/include/c++/10/complex:1874:5: note: candidates are: 'template<class _Tp> constexpr typename __gnu_cxx::__promote<_Tp>::__type std::real(_Tp)'
 1874 |     real(_Tp __x)
      |     ^~~~
/usr/include/c++/10/complex:568:5: note:                 'template<class _Tp> constexpr _Tp std::real(const std::complex<_Tp>&)'
  568 |     real(const complex<_Tp>& __z)
      |     ^~~~
doll.cpp:6:45: note:                 'll real [400001]'
    6 | ll leftp[nmax+1],rightp[nmax+1],cng[nmax+1],real[nmax+1],switches=0,added=0;
      |                                             ^~~~
doll.cpp:60:20: error: reference to 'real' is ambiguous
   60 |             Y[k-1]=real[Y[k-1]];
      |                    ^~~~
In file included from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from doll.cpp:1:
/usr/include/c++/10/complex:1874:5: note: candidates are: 'template<class _Tp> constexpr typename __gnu_cxx::__promote<_Tp>::__type std::real(_Tp)'
 1874 |     real(_Tp __x)
      |     ^~~~
/usr/include/c++/10/complex:568:5: note:                 'template<class _Tp> constexpr _Tp std::real(const std::complex<_Tp>&)'
  568 |     real(const complex<_Tp>& __z)
      |     ^~~~
doll.cpp:6:45: note:                 'll real [400001]'
    6 | ll leftp[nmax+1],rightp[nmax+1],cng[nmax+1],real[nmax+1],switches=0,added=0;
      |                                             ^~~~
doll.cpp: In function 'll dfs(ll)':
doll.cpp:24:11: warning: control reaches end of non-void function [-Wreturn-type]
   24 | cng[-node]=(!cng[-node]);
      | ~~~~~~~~~~^~~~~~~~~~~~~~