Submission #17084

# Submission time Handle Problem Language Result Execution time Memory
17084 2015-11-04T19:53:18 Z erdemkiraz Parrots (IOI11_parrots) C++
Compilation error
0 ms 0 KB
#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

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]);
                  ^