Submission #1016496

#TimeUsernameProblemLanguageResultExecution timeMemory
1016496nisanduuParrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; void encode(int N, int M[]) { int i; string st; string s2,f; int number,num; for(i=0; i<N; i++){ num = i; st = to_string(num); s2 = to_string(M[i]); f = st+s2; number = stoi(f); send(number); } }
#include <bits/stdc++.h> using namespace std; void decode(int N, int L, int X[]) { int i, b,n,digit,j,num; map<int,int> mp; string s,tmp; char d; for(i=0; i<N; i++) { b = X[i]; s = to_string(b); n = s.length(); d = s[n-1]; digit = (d - '0'); tmp = ""; for(j=0;j<n-1;j++){ tmp += s[j]; } num = stoi(tmp); mp[num] = digit; } for(auto z:mp){ output(z.second); } }

Compilation message (stderr)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:18:5: error: 'send' was not declared in this scope
   18 |     send(number);
      |     ^~~~

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:24:12: error: 'output' was not declared in this scope
   24 |            output(z.second);
      |            ^~~~~~