Submission #17084

#TimeUsernameProblemLanguageResultExecution timeMemory
17084erdemkirazParrots (IOI11_parrots)C++98
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define type(x) __typeof((x).begin()) #define foreach(it, x) for(type(x) it = (x).begin(); it != (x).end(); it++) typedef long long ll; typedef pair < int, int > ii; const int inf = 1e9 + 333; const ll linf = 1e18 + inf; const int N = 100 + 5; #include "encoder.h" #include "encoderlib.h" void encode(int n, int a[]) { for(int i = 0; i < n; i++) { send(i * 256 + M[i]); } }
#include <bits/stdc++.h> using namespace std; #define type(x) __typeof((x).begin()) #define foreach(it, x) for(type(x) it = (x).begin(); it != (x).end(); it++) typedef long long ll; typedef pair < int, int > ii; const int inf = 1e9 + 333; const ll linf = 1e18 + inf; const int N = 100 + 5; //////////////////////////////////////////////////////////////////////////////////////////////// #include "decoder.h" #include "decoderlib.h" int ans[N]; void decode(int n, int m, int a[]) { for(int i = 0; i < m; i++) { ans[a[i] / 256] = a[i] % 256; } for(int i = 0; i < n; i++) output(ans[i]); }

Compilation message (stderr)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:21:18: error: 'M' was not declared in this scope
   send(i * 256 + M[i]);
                  ^