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) {
^~~