0_0_29470345_16524.cpp: In function 'int find_path(int, int)':
0_0_29470345_16524.cpp:8:2: error: 'nbsp' was not declared in this scope
if (p == n - 1) return limit;
^
0_0_29470345_16524.cpp:11:64: error: 'i' was not declared in this scope
if (dist[p] == dist[i] + 1 && flow[p][i] > 0)
^
0_0_29470345_16524.cpp:13:86: error: 'i' was not declared in this scope
int t = find_path(i, min(limit, flow[p][i]));
^
0_0_29470345_16524.cpp:24:97: error: 'i' was not declared in this scope
for (int i = 0; i < n; ++i) if (flow[p][i] >0) label = min(label, dist[i] + 1);
^
0_0_29470345_16524.cpp: In function 'int iSAP()':
0_0_29470345_16524.cpp:31:2: error: 'nbsp' was not declared in this scope
gap[0] = n;
^
0_0_29470345_16524.cpp: In function 'int main()':
0_0_29470345_16524.cpp:38:2: error: 'nbsp' was not declared in this scope
while(scanf("%d%d",&n,&k)!=EOF)
^
0_0_29470345_16524.cpp:47:70: error: 'i' was not declared in this scope
flow[0][i] += x;//注意是无向图还是有向图
^
0_0_29470345_16524.cpp:55:73: error: 'i' was not declared in this scope
flow[i][n+1]+=x;
^
|