Submission #676630

#TimeUsernameProblemLanguageResultExecution timeMemory
676630nvujicaParrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include "encoder.h"
#include "encoderlib.h"

void encode(int n, int m[]){
	for(int i = 0; i < n; i++){
		for(int j = 0; j < 8; j++){
			if(m[i] & (1 << j)) send((i << 3) + j);
		}
	}
}
#include "decoder.h"
#include "decoderlib.h"

void decode(int n, int l, int x[]){
	vector <int> m(n, 0);
	
	for(int i = 0; i < l; i++){
		m[(x[i] & 248) >> 3] |= (1 << (x[i] & 7));
	}
	
	for(int i = 0; i < n; i++){
		output(m[i]);
	}
}

Compilation message (stderr)

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:5:2: error: 'vector' was not declared in this scope
    5 |  vector <int> m(n, 0);
      |  ^~~~~~
decoder.cpp:5:10: error: expected primary-expression before 'int'
    5 |  vector <int> m(n, 0);
      |          ^~~
decoder.cpp:8:3: error: 'm' was not declared in this scope
    8 |   m[(x[i] & 248) >> 3] |= (1 << (x[i] & 7));
      |   ^
decoder.cpp:12:10: error: 'm' was not declared in this scope
   12 |   output(m[i]);
      |          ^