0_0_13810743_18952.cpp:439:4: error: missing terminating " character
printf("Case #%d:
^
0_0_13810743_18952.cpp:440:1: error: missing terminating " character
",te);
^
0_0_13810743_18952.cpp: In member function 'void Graph::clear(int)':
0_0_13810743_18952.cpp:27:27: error: 'memset' was not declared in this scope
memset(adj, 0, sizeof(adj));
^
0_0_13810743_18952.cpp: In member function 'int Graph::max_match()':
0_0_13810743_18952.cpp:45:32: error: 'memset' was not declared in this scope
memset(match, -1, sizeof(match));
^
0_0_13810743_18952.cpp: In member function 'int Graph::bfs(int)':
0_0_13810743_18952.cpp:82:28: error: 'memset' was not declared in this scope
memset(pre, -1, sizeof(pre));
^
0_0_13810743_18952.cpp: In member function 'int Graph::contract(int, int)':
0_0_13810743_18952.cpp:249:41: error: 'memset' was not declared in this scope
memset(in_blossom, 0, sizeof(in_blossom));
^
0_0_13810743_18952.cpp: In member function 'int Graph::find_base(int, int)':
0_0_13810743_18952.cpp:288:35: error: 'memset' was not declared in this scope
memset(in_path,0,sizeof(in_path));
^
0_0_13810743_18952.cpp: In function 'int main()':
0_0_13810743_18952.cpp:11:55: error: 'memset' was not declared in this scope
#define CLR(NAME,VALUE) memset(NAME,VALUE,sizeof(NAME))
^
0_0_13810743_18952.cpp:357:4: note: in expansion of macro 'CLR'
CLR(net,0);
^
0_0_13810743_18952.cpp:442:4: error: expected primary-expression before 'if'
if( pre==cur
^
0_0_13810743_18952.cpp:446:1: error: 'else' without a previous 'if'
else
^
|