0_0_13808549_26371.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13808549_26371.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13808549_26371.cpp:3:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13808549_26371.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13808549_26371.cpp: In function 'bool Max_Flow::BFS()':
0_0_13808549_26371.cpp:32:33: error: 'memset' was not declared in this scope
memset(dpt,-1,sizeof dpt);
^
0_0_13808549_26371.cpp: In function 'int Max_Flow::Dinic(int, int)':
0_0_13808549_26371.cpp:55:63: error: 'min' was not declared in this scope
int temp=Dinic(table[i].to,min(left,table[i].f) );
^
0_0_13808549_26371.cpp: In function 'int main()':
0_0_13808549_26371.cpp:69:3: error: expected ';' before 'scanf'
scanf("%d",&x),Link(S,T,x);
^
0_0_13808549_26371.cpp:69:16: error: 'scanf' was not declared in this scope
scanf("%d",&x),Link(S,T,x);
^
0_0_13808549_26371.cpp:69:29: error: expected ')' before ';' token
scanf("%d",&x),Link(S,T,x);
^
0_0_13808549_26371.cpp:72:2: error: 'cout' was not declared in this scope
cout
^
|