Submission #592213

#TimeUsernameProblemLanguageResultExecution timeMemory
592213l_rehoHorses (IOI15_horses)C++14
17 / 100
26 ms12108 KiB
#include <bits/stdc++.h> using namespace std; vector<int> A, B; int L; long long test(){ long long curr = 1; long long best = 0; for(int i = 0; i < L; i++){ curr *= A[i]; if(curr * B[i] > best) best = curr * B[i]; } return best; } int init(int N, int X[], int Y[]) { A.assign(N, 0); B.assign(N, 0); L = N; for(int i = 0; i < N; i++) A[i] = X[i], B[i] = Y[i]; return test(); } 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:32:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   32 |  return test();
      |         ~~~~^~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:35:17: warning: unused parameter 'pos' [-Wunused-parameter]
   35 | int updateX(int pos, int val) {
      |             ~~~~^~~
horses.cpp:35:26: warning: unused parameter 'val' [-Wunused-parameter]
   35 | int updateX(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:39:17: warning: unused parameter 'pos' [-Wunused-parameter]
   39 | int updateY(int pos, int val) {
      |             ~~~~^~~
horses.cpp:39:26: warning: unused parameter 'val' [-Wunused-parameter]
   39 | int updateY(int pos, int val) {
      |                      ~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...