Submission #1007720

#TimeUsernameProblemLanguageResultExecution timeMemory
1007720uranhishigParrots (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 =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)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:7:12: error: expected unqualified-id before '=' token
    7 |   for( int =0; i<N; i++){
      |            ^
encoder.cpp:7:11: error: expected ';' before '=' token
    7 |   for( int =0; i<N; i++){
      |           ^~
      |           ;
encoder.cpp:7:12: error: expected primary-expression before '=' token
    7 |   for( int =0; i<N; i++){
      |            ^
encoder.cpp:7:16: error: 'i' was not declared in this scope
    7 |   for( int =0; i<N; i++){
      |                ^
encoder.cpp:7:19: error: expected ')' before ';' token
    7 |   for( int =0; i<N; i++){
      |      ~            ^
      |                   )
encoder.cpp:7:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    7 |   for( int =0; i<N; i++){
      |   ^~~
encoder.cpp:7:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    7 |   for( int =0; i<N; i++){
      |                     ^
encoder.cpp:7:21: error: 'i' was not declared in this scope

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