0_0_33145580_20903.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:3:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:5:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:6:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:7:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:8:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:9:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp:10:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_33145580_20903.cpp: In member function 'int Arith::get_min(int)':
0_0_33145580_20903.cpp:54:35: error: 'ceil' was not declared in this scope
int k = ceil((p-a+0.0) / d);
^
0_0_33145580_20903.cpp:55:32: error: 'min' was not declared in this scope
return min(b, a + k * d);
^
0_0_33145580_20903.cpp: In member function 'int Arith::get_max(int)':
0_0_33145580_20903.cpp:62:32: error: 'min' was not declared in this scope
return min(b, a + k * d);
^
0_0_33145580_20903.cpp: In function 'Arith merge(Arith, Arith)':
0_0_33145580_20903.cpp:95:32: error: 'swap' was not declared in this scope
if(x.a > y.a) swap(x, y);
^
0_0_33145580_20903.cpp:97:62: error: 'min' was not declared in this scope
if((y.a-x.a)%x.d == 0) return Arith(y.a, min(y.b, x.b) == y.a ? -1 : x.d, min(y.b, x.b));
^
0_0_33145580_20903.cpp: In member function 'void Hash::init()':
0_0_33145580_20903.cpp:114:35: error: 'memset' was not declared in this scope
memset(fst, -1, sizeof fst);
^
0_0_33145580_20903.cpp: In function 'void da(char*, int, int)':
0_0_33145580_20903.cpp:176:18: error: 'swap' was not declared in this scope
swap(x, y);
^
0_0_33145580_20903.cpp: In function 'int succ(int, int, int)':
0_0_33145580_20903.cpp:196:46: error: 'min' was not declared in this scope
int mi = min(s1.get_min(q), s2.get_min(q));
^
0_0_33145580_20903.cpp: In function 'int pred(int, int, int)':
0_0_33145580_20903.cpp:207:46: error: 'max' was not declared in this scope
int mx = max(s1.get_max(q), s2.get_max(q));
^
0_0_33145580_20903.cpp: In function 'int query(int, int)':
0_0_33145580_20903.cpp:254:40: error: 'max' was not declared in this scope
ans = max(ans, largePS(l, r, i));
^
0_0_33145580_20903.cpp:257:38: error: 'max' was not declared in this scope
ans = max(ans, larger(l, r, i>>1));
^
0_0_33145580_20903.cpp: In function 'int getin()':
0_0_33145580_20903.cpp:279:22: error: 'getchar' was not declared in this scope
while((c=getchar()) && !('0' <= c && c <= '9'));
^
0_0_33145580_20903.cpp:281:22: error: 'getchar' was not declared in this scope
while((c=getchar()) && '0' <= c&& c<= '9') ans = ans*10
^
0_0_33145580_20903.cpp:281:58: error: expected ';' at end of input
while((c=getchar()) && '0' <= c&& c<= '9') ans = ans*10
^
0_0_33145580_20903.cpp:281:58: error: expected '}' at end of input
|