Submission #68952

#TimeUsernameProblemLanguageResultExecution timeMemory
68952theknife2001Horses (IOI15_horses)C++17
17 / 100
21 ms8556 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++) { x[i]=X[i]; y[i]=Y[i]; } for(int i=0;i<N;i++) { s*=x[i]; ret=max(s*y[i],ret); } return (ret%m); } int updateX(int pos, int val) { long long s=1; long long ret=0; x[pos]=val; for(int i=0;i<N;i++) { s*=x[i]; ret=max(s*y[i],ret); } return (ret%m); } int updateY(int pos, int val) { long long s=1; long long ret=0; y[pos]=val; for(int i=0;i<N;i++) { s*=x[i]; ret=max((s*y[i]),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:27:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:39:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:51:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return (ret%m);
            ~~~~^~~
#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...