Submission #772767

#TimeUsernameProblemLanguageResultExecution timeMemory
7727671neHorses (IOI15_horses)C++14
17 / 100
23 ms8272 KiB
#include "horses.h" #include <bits/stdc++.h> using namespace std; vector<long long>cur; const int mod = 1e9 + 7; int init(int N, int x[], int y[]) { cur.resize(N); long long v = 1; for (int i = 0;i<N;++i){ bool ok = true; long long u = 1; for (int j = i + 1;j<N;++j){ if (u * y[j] * x[j] > y[i]){ ok = false; break; } u*=x[j]; } v = (v * x[i])%mod; if (ok){ return (v * y[i])%mod; } } } 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:21:21: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   21 |    return (v * y[i])%mod;
      |           ~~~~~~~~~~^~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:26:17: warning: unused parameter 'pos' [-Wunused-parameter]
   26 | int updateX(int pos, int val) {
      |             ~~~~^~~
horses.cpp:26:26: warning: unused parameter 'val' [-Wunused-parameter]
   26 | int updateX(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:30:17: warning: unused parameter 'pos' [-Wunused-parameter]
   30 | int updateY(int pos, int val) {
      |             ~~~~^~~
horses.cpp:30:26: warning: unused parameter 'val' [-Wunused-parameter]
   30 | int updateY(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:24:1: warning: control reaches end of non-void function [-Wreturn-type]
   24 | }
      | ^
#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...