Submission #747311

#TimeUsernameProblemLanguageResultExecution timeMemory
747311Desh03말 (IOI15_horses)C++17
Compilation error
0 ms0 KiB
#include "horses.h" #include <bits/stdc++.h> using namespace std; const int mod = 1000000007 vector<int> x, y; int init(int n, vector<int> X, vector<int> Y) { x = X, y = Y; vector<int> p(n); p[0] = x[0]; for (int i = 1; i < n; i++) p[i] = p[i - 1] * x[i]; int ans = 0; for (int i = 0; i < n; i++) ans = max(ans, p[i] * y[i]); return ans % mod; } int updateX(int pos, int val) { } int updateY(int pos, int val) { }

Compilation message (stderr)

horses.cpp:6:1: error: expected ',' or ';' before 'vector'
    6 | vector<int> x, y;
      | ^~~~~~
horses.cpp: In function 'int init(int, std::vector<int>, std::vector<int>)':
horses.cpp:9:5: error: 'x' was not declared in this scope
    9 |     x = X, y = Y;
      |     ^
horses.cpp:9:12: error: 'y' was not declared in this scope
    9 |     x = X, y = Y;
      |            ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:20:1: warning: no return statement in function returning non-void [-Wreturn-type]
   20 | }
      | ^
horses.cpp:18:17: warning: unused parameter 'pos' [-Wunused-parameter]
   18 | int updateX(int pos, int val) {
      |             ~~~~^~~
horses.cpp:18:26: warning: unused parameter 'val' [-Wunused-parameter]
   18 | int updateX(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:24:1: warning: no return statement in function returning non-void [-Wreturn-type]
   24 | }
      | ^
horses.cpp:22:17: warning: unused parameter 'pos' [-Wunused-parameter]
   22 | int updateY(int pos, int val) {
      |             ~~~~^~~
horses.cpp:22:26: warning: unused parameter 'val' [-Wunused-parameter]
   22 | int updateY(int pos, int val) {
      |                      ~~~~^~~