Submission #234208

#TimeUsernameProblemLanguageResultExecution timeMemory
234208YisuaHorses (IOI15_horses)C++14
Compilation error
0 ms0 KiB
#include <algorithm>
#include "horses.h"

using namespace std;

int init(int N,int X[],int Y[]) {
	int V[N];
	V[0]=X[0];
	for(int i=1;i<N;i++)V[i]=V[i-1]*X[1];
	int nx=0;
	for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
	
	return nx;
}

int updatex(int pos , int val){
	return 0;
}

int updateY(int pos , int val){
	return 0;
}

Compilation message (stderr)

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:11:41: error: expected ')' before ';' token
  for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
                                         ^
horses.cpp:11:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
  ^~~
horses.cpp:11:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
                                          ^
horses.cpp:11:42: error: expected primary-expression before ')' token
horses.cpp:14:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^
horses.cpp: In function 'int updatex(int, int)':
horses.cpp:16:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updatex(int pos , int val){
                 ^~~
horses.cpp:16:27: warning: unused parameter 'val' [-Wunused-parameter]
 int updatex(int pos , int val){
                           ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:20:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos , int val){
                 ^~~
horses.cpp:20:27: warning: unused parameter 'val' [-Wunused-parameter]
 int updateY(int pos , int val){
                           ^~~