Submission #68947

#TimeUsernameProblemLanguageResultExecution timeMemory
68947theknife2001Horses (IOI15_horses)C++17
0 / 100
19 ms10560 KiB
#include "horses.h" //#include "grader.cpp" #include <bits/stdc++.h> using namespace std; const int N=1e3+55; long long x[N]; long long y[N]; int m=1e9+7; int init(int N, int X[], int Y[]) { long long s=1; long long ret=0; for(int i=0;i<N;i++) { s*=x[i]; s%=m; ret=max((s*y[i])%m,ret); } return (ret%m); } int updateX(int pos, int val) { long long s=1; long long ret=0; for(int i=0;i<N;i++) { s*=x[i]; s%=m; ret=max((s*y[i])%m,ret); } return (ret%m); } int updateY(int pos, int val) { long long s=1; long long ret=0; for(int i=0;i<N;i++) { s*=x[i]; s%=m; ret=max((s*y[i])%m,ret); } return (ret%m); }

Compilation message (stderr)

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:13:33: warning: declaration of 'N' shadows a global declaration [-Wshadow]
 int init(int N, int X[], int Y[])
                                 ^
horses.cpp:6:11: note: shadowed declaration is here
 const int N=1e3+55;
           ^
horses.cpp:23:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
horses.cpp:13:23: warning: unused parameter 'X' [-Wunused-parameter]
 int init(int N, int X[], int Y[])
                       ^
horses.cpp:13:32: warning: unused parameter 'Y' [-Wunused-parameter]
 int init(int N, int X[], int Y[])
                                ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:35:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
horses.cpp:26:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val) {
                 ^~~
horses.cpp:26:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val) {
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:47:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
horses.cpp:38:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) {
                 ^~~
horses.cpp:38:26: warning: unused parameter 'val' [-Wunused-parameter]
 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...