Submission #1007611

#TimeUsernameProblemLanguageResultExecution timeMemory
1007611nomuluunParrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; void encode(int N, int M[]){ for(int i=0; i<N; i++){ if(M[i]==1)send(i); } }
#include<bits/stdc++.h> using namespace std; void decode(int N, int L, int X[]){ bool b[N+5]; for(int i=0; i<L; i++){ b[X[i]]=1; } for(int i=0; i<N; i++){ if(b[i]==1)output(1); else output(0); } }

Compilation message (stderr)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:5:20: error: 'send' was not declared in this scope
    5 |         if(M[i]==1)send(i);
      |                    ^~~~

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:9:20: error: 'output' was not declared in this scope
    9 |         if(b[i]==1)output(1);
      |                    ^~~~~~
decoder.cpp:10:14: error: 'output' was not declared in this scope
   10 |         else output(0);
      |              ^~~~~~