# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1016496 | nisanduu | Parrots (IOI11_parrots) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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);
}
}