0_0_32311465_11532.cpp:11:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32311465_11532.cpp:12:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32311465_11532.cpp:13:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32311465_11532.cpp: In function 'int dfs(int, int, int, int)':
0_0_32311465_11532.cpp:40:78: error: 'min' was not declared in this scope
ans = max(ans, now - min(dfs(a1+1, a2, b1, b2), dfs(a1, a2-1, b1, b2)));
^
0_0_32311465_11532.cpp:40:79: error: 'max' was not declared in this scope
ans = max(ans, now - min(dfs(a1+1, a2, b1, b2), dfs(a1, a2-1, b1, b2)));
^
0_0_32311465_11532.cpp:43:78: error: 'min' was not declared in this scope
ans = max(ans, now - min(dfs(a1, a2, b1+1, b2), dfs(a1, a2, b1, b2-1)));
^
0_0_32311465_11532.cpp:43:79: error: 'max' was not declared in this scope
ans = max(ans, now - min(dfs(a1, a2, b1+1, b2), dfs(a1, a2, b1, b2-1)));
^
0_0_32311465_11532.cpp: In function 'int main()':
0_0_32311465_11532.cpp:51:23: error: 'scanf' was not declared in this scope
scanf("%d", &nCase);
^
0_0_32311465_11532.cpp:63:32: error: 'memset' was not declared in this scope
memset(f, -1, sizeof(f));
^
0_0_32311465_11532.cpp:64:9: error: 'cout' was not declared in this scope
cout << dfs(1, n, 1, n) << endl;
^
0_0_32311465_11532.cpp:64:36: error: 'endl' was not declared in this scope
cout << dfs(1, n, 1, n) << endl;
^
|