0_0_13797055_27593.cpp:2:5: error: stray '#' in program
8 #include <string.h>
^
0_0_13797055_27593.cpp:3:5: error: stray '#' in program
9 #include <iostream>
^
0_0_13797055_27593.cpp:4:5: error: stray '#' in program
10 #include <algorithm>
^
0_0_13797055_27593.cpp:5:5: error: stray '#' in program
11 #include <vector>
^
0_0_13797055_27593.cpp:6:5: error: stray '#' in program
12 #include <queue>
^
0_0_13797055_27593.cpp:7:5: error: stray '#' in program
13 #include <set>
^
0_0_13797055_27593.cpp:8:5: error: stray '#' in program
14 #include <map>
^
0_0_13797055_27593.cpp:9:5: error: stray '#' in program
15 #include <string>
^
0_0_13797055_27593.cpp:10:5: error: stray '#' in program
16 #include <math.h>
^
0_0_13797055_27593.cpp:11:5: error: stray '#' in program
17 #include <stdlib.h>
^
0_0_13797055_27593.cpp:12:5: error: stray '#' in program
18 #include <time.h>
^
0_0_13797055_27593.cpp:2:3: error: expected unqualified-id before numeric constant
8 #include <string.h>
^
0_0_13797055_27593.cpp:14:2: error: expected unqualified-id before numeric constant
20
^
0_0_13797055_27593.cpp:16:2: error: expected unqualified-id before numeric constant
22 //最大流ISAP部分
^
0_0_13797055_27593.cpp:18:2: error: expected unqualified-id before numeric constant
24 const int INF = 0x3f3f3f3f;
^
0_0_13797055_27593.cpp:19:2: error: expected unqualified-id before numeric constant
25 struct Edge
^
0_0_13797055_27593.cpp:22:6: error: 'edge' does not name a type
28 }edge[MAXM];
^
0_0_13797055_27593.cpp:23:2: error: expected unqualified-id before numeric constant
29 int tol;
^
0_0_13797055_27593.cpp:24:2: error: expected unqualified-id before numeric constant
30 int head[MAXN];
^
0_0_13797055_27593.cpp:25:2: error: expected unqualified-id before numeric constant
31 int gap[MAXN],dep[MAXN],pre[MAXN],cur[MAXN];
^
0_0_13797055_27593.cpp:26:2: error: expected unqualified-id before numeric constant
32 void init()
^
0_0_13797055_27593.cpp:31:2: error: expected unqualified-id before numeric constant
37 void addedge(int u,int v,int w,int rw = 0)
^
0_0_13797055_27593.cpp:44:2: error: expected unqualified-id before numeric constant
50 int sap(int start,int end,int N)
^
|