제출 #17084

#제출 시각아이디문제언어결과실행 시간메모리
17084erdemkiraz앵무새 (IOI11_parrots)C++98
컴파일 에러
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]);
}

컴파일 시 표준 에러 (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]);
                  ^