Submission #1007721

#TimeUsernameProblemLanguageResultExecution timeMemory
1007721uranhishigParrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "encoder.h"
#include "encoderlib.h"

void encode(int N, int M[])
{
  for( int i=0; i<N; i++){
  	if(M[i] == 1){
  		send(i);
	}
  }
}
#include <bits/stdc++.h>
#include "decoder.h"
#include "decoderlib.h"

void decode(int N, int L, int X[]) {
  int i, b;
  for(i=0; i<L; i++) {
    int w[n] {};
    for(int i = 0; i < L; i++){
    	w[X[i]] = 1;
	}
	for(int i=0; i<N; i++){
		output(w[i]);
	}
  }
}

Compilation message (stderr)

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:8:11: error: 'n' was not declared in this scope
    8 |     int w[n] {};
      |           ^
decoder.cpp:10:6: error: 'w' was not declared in this scope
   10 |      w[X[i]] = 1;
      |      ^
decoder.cpp:13:10: error: 'w' was not declared in this scope
   13 |   output(w[i]);
      |          ^
decoder.cpp:6:10: warning: unused variable 'b' [-Wunused-variable]
    6 |   int i, b;
      |          ^