0_0_38715523_31172.cpp:299:23: error: redefinition of 'constexpr const int my::inf'
299 | constexpr int inf = 0x3f3f3f3f;
| ^~~
0_0_38715523_31172.cpp:26:23: note: 'constexpr const int my::inf' previously defined here
26 | constexpr int inf = 0x3f3f3f3f;
| ^~~
0_0_38715523_31172.cpp:300:22: error: redefinition of 'constexpr const my::ll my::INF'
300 | constexpr ll INF = 0x3f3f3f3f3f3f3f3fLL;
| ^~~
0_0_38715523_31172.cpp:27:22: note: 'constexpr const my::ll my::INF' previously defined here
27 | constexpr ll INF = 0x3f3f3f3f3f3f3f3fLL;
| ^~~
0_0_38715523_31172.cpp:301:22: error: redefinition of 'constexpr const my::db my::EPS'
301 | constexpr db EPS = 1.0e-9;
| ^~~
0_0_38715523_31172.cpp:28:22: note: 'constexpr const my::db my::EPS' previously defined here
28 | constexpr db EPS = 1.0e-9;
| ^~~
0_0_38715523_31172.cpp:302:22: error: redefinition of 'constexpr const my::ll my::MOD'
302 | constexpr ll MOD = 998244353LL;
| ^~~
0_0_38715523_31172.cpp:29:22: note: 'constexpr const my::ll my::MOD' previously defined here
29 | constexpr ll MOD = 998244353LL;
| ^~~
0_0_38715523_31172.cpp:303:22: error: redefinition of 'constexpr const my::ll my::SZ'
303 | constexpr ll SZ = 2e5 + 5;
| ^~
0_0_38715523_31172.cpp:30:22: note: 'constexpr const my::ll my::SZ' previously defined here
30 | constexpr ll SZ = 2e5 + 5;
| ^~
0_0_38715523_31172.cpp:316:23: error: redefinition of 'constexpr const int fio::BUF_SZ'
316 | constexpr int BUF_SZ = 1e5;
| ^~~~~~
0_0_38715523_31172.cpp:43:23: note: 'constexpr const int fio::BUF_SZ' previously defined here
43 | constexpr int BUF_SZ = 1e5;
| ^~~~~~
0_0_38715523_31172.cpp:317:14: error: redefinition of 'bool fio::iof'
317 | bool iof = true;
| ^~~
0_0_38715523_31172.cpp:44:14: note: 'bool fio::iof' previously defined here
44 | bool iof = true;
| ^~~
0_0_38715523_31172.cpp:318:21: error: redefinition of 'char fio::NC()'
318 | inline char NC(void)
| ^~
0_0_38715523_31172.cpp:45:21: note: 'char fio::NC()' previously defined here
45 | inline char NC(void)
| ^~
0_0_38715523_31172.cpp:332:21: error: redefinition of 'bool fio::BLK(char)'
332 | inline bool BLK(char c) { return c == ' ' or c == '\n' or c == '\r' or c == '\t'; }
| ^~~
0_0_38715523_31172.cpp:59:21: note: 'bool fio::BLK(char)' previously defined here
59 | inline bool BLK(char c) { return c == ' ' or c == '\n' or c == '\r' or c == '\t'; }
| ^~~
0_0_38715523_31172.cpp:334:21: error: redefinition of 'template<class T> bool fio::FIN(T&)'
334 | inline bool FIN(T &x)
| ^~~
0_0_38715523_31172.cpp:61:21: note: 'template<class T> bool fio::FIN(T&)' previously declared here
61 | inline bool FIN(T &x)
| ^~~
0_0_38715523_31172.cpp:357:21: error: redefinition of 'bool fio::FIN(my::db&)'
357 | inline bool FIN(db &x)
| ^~~
0_0_38715523_31172.cpp:84:21: note: 'bool fio::FIN(my::db&)' previously defined here
84 | inline bool FIN(db &x)
| ^~~
0_0_38715523_31172.cpp:391:21: error: redefinition of 'bool fio::FIN(char&)'
391 | inline bool FIN(char &c)
| ^~~
0_0_38715523_31172.cpp:118:21: note: 'bool fio::FIN(char&)' previously defined here
118 | inline bool FIN(char &c)
| ^~~
0_0_38715523_31172.cpp:403:21: error: redefinition of 'bool fio::FIN(char*)'
403 | inline bool FIN(char *s)
| ^~~
0_0_38715523_31172.cpp:130:21: note: 'bool fio::FIN(char*)' previously defined here
130 | inline bool FIN(char *s)
| ^~~
0_0_38715523_31172.cpp:418:21: error: redefinition of 'bool fio::LIN(char*)'
418 | inline bool LIN(char *s)
| ^~~
0_0_38715523_31172.cpp:145:21: note: 'bool fio::LIN(char*)' previously defined here
145 | inline bool LIN(char *s)
| ^~~
0_0_38715523_31172.cpp:434:14: error: redefinition of 'template<class T, class ... U> bool fio::FIN(T&, U& ...)'
434 | bool FIN(T &x, U &...o) { return FIN(x) and FIN(o...); }
| ^~~
0_0_38715523_31172.cpp:161:14: note: 'template<class T, class ... U> bool fio::FIN(T&, U& ...)' previously declared here
161 | bool FIN(T &x, U &...o) { return FIN(x) and FIN(o...); }
| ^~~
0_0_38715523_31172.cpp:435:14: error: redefinition of 'void fio::FIN(int*, int, int)'
435 | void FIN(int *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:162:14: note: 'void fio::FIN(int*, int, int)' previously defined here
162 | void FIN(int *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:441:14: error: redefinition of 'void fio::FIN(my::ll*, int, int)'
441 | void FIN(ll *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:168:14: note: 'void fio::FIN(my::ll*, int, int)' previously defined here
168 | void FIN(ll *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:447:14: error: redefinition of 'void fio::FIN(my::db*, int, int)'
447 | void FIN(db *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:174:14: note: 'void fio::FIN(my::db*, int, int)' previously defined here
174 | void FIN(db *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:453:14: error: redefinition of 'void fio::FIN(char*, int, int)'
453 | void FIN(char *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:180:14: note: 'void fio::FIN(char*, int, int)' previously defined here
180 | void FIN(char *a, int l, int r)
| ^~~
0_0_38715523_31172.cpp:462:4: error: redefinition of 'my::ll g [505][505]'
462 | ll g[505][505];
| ^
0_0_38715523_31172.cpp:189:4: note: 'my::ll g [505][505]' previously declared here
189 | ll g[505][505];
| ^
0_0_38715523_31172.cpp:463:4: error: redefinition of 'my::ll dp [505]'
463 | ll dp[505];
| ^~
0_0_38715523_31172.cpp:190:4: note: 'my::ll dp [505]' previously declared here
190 | ll dp[505];
| ^~
0_0_38715523_31172.cpp:464:9: error: redefinition of 'std::vector<std::pair<long long int, long long int> > a [200005]'
464 | VE<PLL> a[SZ];
| ^
0_0_38715523_31172.cpp:191:9: note: 'std::vector<std::pair<long long int, long long int> > a [200005]' previously defined here
191 | VE<PLL> a[SZ];
| ^
0_0_38715523_31172.cpp:465:4: error: redefinition of 'my::ll n'
465 | ll n, m;
| ^
0_0_38715523_31172.cpp:192:4: note: 'my::ll n' previously declared here
192 | ll n, m;
| ^
0_0_38715523_31172.cpp:465:7: error: redefinition of 'my::ll m'
465 | ll n, m;
| ^
0_0_38715523_31172.cpp:192:7: note: 'my::ll m' previously declared here
192 | ll n, m;
| ^
0_0_38715523_31172.cpp:466:48: error: redefinition of 'std::priority_queue<std::pair<long long int, long long int>, std::vector<std::pair<long long int, long long int> >, std::greater<std::pair<long long int, long long int> > > q'
466 | priority_queue<PLL, vector<PLL>, greater<PLL>> q;
| ^
0_0_38715523_31172.cpp:193:48: note: 'std::priority_queue<std::pair<long long int, long long int>, std::vector<std::pair<long long int, long long int> >, std::greater<std::pair<long long int, long long int> > > q' previously declared here
193 | priority_queue<PLL, vector<PLL>, greater<PLL>> q;
| ^
0_0_38715523_31172.cpp:468:6: error: redefinition of 'void Solve()'
468 | void Solve(void)
| ^~~~~
0_0_38715523_31172.cpp:195:6: note: 'void Solve()' previously defined here
195 | void Solve(void)
| ^~~~~
0_0_38715523_31172.cpp:533:5: error: redefinition of 'int main()'
533 | int main(void)
| ^~~~
0_0_38715523_31172.cpp:260:5: note: 'int main()' previously defined here
260 | int main(void)
| ^~~~
|