horses.cpp: In function 'bool chmax(int&, int)':
horses.cpp:18:24: warning: declaration of 'y' shadows a global declaration [-Wshadow]
18 | bool chmax(int &x, int y){
| ~~~~^
horses.cpp:17:17: note: shadowed declaration is here
17 | vector <int> x, y;
| ^
horses.cpp:18:17: warning: declaration of 'x' shadows a global declaration [-Wshadow]
18 | bool chmax(int &x, int y){
| ~~~~~^
horses.cpp:17:14: note: shadowed declaration is here
17 | vector <int> x, y;
| ^
horses.cpp: In function 'int F()':
horses.cpp:40:21: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
40 | return res*y[it]%Mod;
| ~~~~~~~~~^~~~
horses.cpp: In function 'void IO(std::string)':
horses.cpp:13:29: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | void IO(string name){freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout);}
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
horses.cpp:13:70: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | void IO(string name){freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout);}
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~