| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1193301 | vivkostov | Horses (IOI15_horses) | C++20 | Compilation error | 0 ms | 0 KiB |
#include "horses.cpp"
#include "horses.h"
#include <stdio.h>
#include <stdlib.h>
#include <bits/stdc++.h>
using namespace std;
static char _buffer[1024];
static int _currentChar = 0;
static int _charsNumber = 0;
static FILE *_inputFile, *_outputFile;
static inline int _read() {
if (_charsNumber < 0) {
exit(1);
}
if (!_charsNumber || _currentChar == _charsNumber) {
_charsNumber = (int)fread(_buffer, sizeof(_buffer[0]), sizeof(_buffer), _inputFile);
_currentChar = 0;
}
if (_charsNumber <= 0) {
return -1;
}
return _buffer[_currentChar++];
}
static inline int _readInt() {
int c, x, s;
cin>>c;
return c;
c = _read();
while (c <= 32) c = _read();
x = 0;
s = 1;
if (c == '-') {
s = -1;
c = _read();
}
while (c > 32) {
x *= 10;
x += c - '0';
c = _read();
}
if (s < 0) x = -x;
return x;
}
int main() {
_inputFile = fopen("horses.in", "rb");
_outputFile = fopen("horses.out", "w");
int N; N = _readInt();
int *X = (int*)malloc(sizeof(int)*(unsigned int)N);
int *Y = (int*)malloc(sizeof(int)*(unsigned int)N);
for (int i = 0; i < N; i++) {
X[i] = _readInt();
}
for (int i = 0; i < N; i++) {
Y[i] = _readInt();
}
cout<<init(N,X,Y)<<endl;
int M; M = _readInt();
for (int i = 0; i < M; i++) {
int type; type = _readInt();
int pos; pos = _readInt();
int val; val = _readInt();
if (type == 1) {
cout<<updateX(pos,val)<<endl;
} else if (type == 2) {
cout<<updateY(pos,val)<<endl;
}
}
return 0;
}
Compilation message (stderr)
In file included from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1:
horses.cpp:1:22: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
1 | #include "horses.cpp"
| ^
horses.cpp:2:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
2 | #include "horses.h"
| ^
horses.cpp:3:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
3 | #include <stdio.h>
| ^
horses.cpp:4:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
4 | #include <stdlib.h>
| ^
horses.cpp:5:25: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
5 | #include <bits/stdc++.h>
| ^
In file included from horses.cpp:3,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1:
/usr/include/stdio.h:27:36: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
27 | #include <bits/libc-header-start.h>
| ^
/usr/include/stdio.h:33:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
33 | #include <stddef.h>
| ^
/usr/include/stdio.h:36:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
36 | #include <stdarg.h>
| ^
/usr/include/stdio.h:38:24: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
38 | #include <bits/types.h>
| ^
/usr/include/stdio.h:39:33: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
39 | #include <bits/types/__fpos_t.h>
| ^
/usr/include/stdio.h:40:35: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
40 | #include <bits/types/__fpos64_t.h>
| ^
/usr/include/stdio.h:41:31: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
41 | #include <bits/types/__FILE.h>
| ^
/usr/include/stdio.h:42:29: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
42 | #include <bits/types/FILE.h>
| ^
/usr/include/stdio.h:43:36: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
43 | #include <bits/types/struct_FILE.h>
| ^
/usr/include/stdio.h:133:28: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
133 | #include <bits/stdio_lim.h>
| ^
/usr/include/stdio.h:136:17: error: missing binary operator before token "("
136 | #if __GLIBC_USE (ISOC2X)
| ^
/usr/include/stdio.h:306:43: error: missing binary operator before token "("
306 | #if defined __USE_XOPEN2K8 || __GLIBC_USE (LIB_EXT2)
| ^
/usr/include/stdio.h:387:17: error: missing binary operator before token "("
387 | #if __GLIBC_USE (LIB_EXT2)
| ^
/usr/include/stdio.h:430:25: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
430 | #include <bits/floatn.h>
| ^
/usr/include/stdio.h:431:18: error: missing binary operator before token "("
431 | #if !__GLIBC_USE (DEPRECATED_SCANF) && !defined __LDBL_COMPAT \
| ^
/usr/include/stdio.h:595:17: error: missing binary operator before token "("
595 | #if __GLIBC_USE (DEPRECATED_GETS)
| ^
/usr/include/stdio.h:621:43: error: missing binary operator before token "("
621 | #if defined __USE_XOPEN2K8 || __GLIBC_USE (LIB_EXT2)
| ^
/usr/include/stdio.h:897:25: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
897 | #include <bits/floatn.h>
| ^
In file included from horses.cpp:4,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1:
/usr/include/c++/11/stdlib.h:36:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
36 | # include <cstdlib>
| ^
In file included from horses.cpp:5,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1,
from horses.cpp:1:
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:33:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
33 | #include <cassert>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:35:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
35 | #include <cctype>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:36:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
36 | #include <cerrno>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:37:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
37 | #include <cfloat>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:38:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
38 | #include <ciso646>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:39:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
39 | #include <climits>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:40:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
40 | #include <clocale>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:41:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
41 | #include <cmath>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:42:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
42 | #include <csetjmp>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:43:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
43 | #include <csignal>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:44:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
44 | #include <cstdarg>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:45:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
45 | #include <cstddef>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:46:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
46 | #include <cstdio>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:47:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
47 | #include <cstdlib>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:48:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
48 | #include <cstring>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:49:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
49 | #include <ctime>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:50:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
50 | #include <cwchar>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:51:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
51 | #include <cwctype>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:54:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
54 | #include <ccomplex>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:55:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
55 | #include <cfenv>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:56:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
56 | #include <cinttypes>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:57:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
57 | #include <cstdalign>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:58:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
58 | #include <cstdbool>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:59:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
59 | #include <cstdint>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:60:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
60 | #include <ctgmath>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:61:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
61 | #include <cuchar>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:65:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
65 | #include <algorithm>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:66:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
66 | #include <bitset>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:67:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
67 | #include <complex>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:68:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
68 | #include <deque>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:69:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
69 | #include <exception>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:70:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
70 | #include <fstream>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:71:22: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
71 | #include <functional>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:72:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
72 | #include <iomanip>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:73:15: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
73 | #include <ios>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:74:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
74 | #include <iosfwd>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:75:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
75 | #include <iostream>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:76:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
76 | #include <istream>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:77:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
77 | #include <iterator>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:78:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
78 | #include <limits>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:79:16: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
79 | #include <list>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:80:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
80 | #include <locale>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:81:15: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
81 | #include <map>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:82:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
82 | #include <memory>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:83:15: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
83 | #include <new>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:84:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
84 | #include <numeric>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:85:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
85 | #include <ostream>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:86:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
86 | #include <queue>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:87:15: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
87 | #include <set>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:88:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
88 | #include <sstream>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:89:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
89 | #include <stack>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:90:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
90 | #include <stdexcept>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:91:21: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
91 | #include <streambuf>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:92:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
92 | #include <string>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:93:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
93 | #include <typeinfo>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:94:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
94 | #include <utility>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:95:20: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
95 | #include <valarray>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:96:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
96 | #include <vector>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:99:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
99 | #include <array>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:100:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
100 | #include <atomic>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:101:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
101 | #include <chrono>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:102:19: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
102 | #include <codecvt>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:103:30: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
103 | #include <condition_variable>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:104:24: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
104 | #include <forward_list>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:105:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
105 | #include <future>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:106:28: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
106 | #include <initializer_list>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:107:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
107 | #include <mutex>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:108:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
108 | #include <random>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:109:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
109 | #include <ratio>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:110:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
110 | #include <regex>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:111:28: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
111 | #include <scoped_allocator>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:112:24: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
112 | #include <system_error>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:113:18: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
113 | #include <thread>
| ^
/usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:114:17: error: #include nested depth 200 exceeds maximum of 200 (use -fmax-include-depth=DEPTH to increase the maximum)
114 | #include <tuple>
|