Submission #1007719

# Submission time Handle Problem Language Result Execution time Memory
1007719 2024-06-25T11:30:36 Z uranhishig Parrots (IOI11_parrots) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "encoder.h"
#include "encoderlib.h"

void encode(int N, int M[])
{
  int i;
  for(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 A[N] {};
    for(int i= 0; i < L; i++){
    	a[X[i]] = 1;
	}
	for(int i=0; i<N; i++){
		output(a[i]);
	}
  }
}

Compilation message

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