0_0_17547644_1945.cpp:7:7: error: 'Maxn' does not name a type
const Maxn=10000+10;
^
0_0_17547644_1945.cpp:9:10: error: 'Maxn' was not declared in this scope
int head[Maxn],dfn[Maxn],low[Maxn],belong[Maxn];
^
0_0_17547644_1945.cpp:9:20: error: 'Maxn' was not declared in this scope
int head[Maxn],dfn[Maxn],low[Maxn],belong[Maxn];
^
0_0_17547644_1945.cpp:9:30: error: 'Maxn' was not declared in this scope
int head[Maxn],dfn[Maxn],low[Maxn],belong[Maxn];
^
0_0_17547644_1945.cpp:9:43: error: 'Maxn' was not declared in this scope
int head[Maxn],dfn[Maxn],low[Maxn],belong[Maxn];
^
0_0_17547644_1945.cpp:10:10: error: 'Maxn' was not declared in this scope
bool ins[Maxn];
^
0_0_17547644_1945.cpp:16:4: error: 'Maxn' was not declared in this scope
}E[Maxn*10];
^
0_0_17547644_1945.cpp: In function 'void adde(int, int)':
0_0_17547644_1945.cpp:20:2: error: 'E' was not declared in this scope
E[k].to=v;
^
0_0_17547644_1945.cpp:21:12: error: 'head' was not declared in this scope
E[k].next=head[u];
^
0_0_17547644_1945.cpp: In function 'void tarjan(int)':
0_0_17547644_1945.cpp:28:2: error: 'dfn' was not declared in this scope
dfn[u]=low[u]=++idx;
^
0_0_17547644_1945.cpp:28:9: error: 'low' was not declared in this scope
dfn[u]=low[u]=++idx;
^
0_0_17547644_1945.cpp:30:2: error: 'ins' was not declared in this scope
ins[u]=1;
^
0_0_17547644_1945.cpp:31:12: error: 'head' was not declared in this scope
for(int i=head[u];i!=-1;i=E[i].next)
^
0_0_17547644_1945.cpp:31:28: error: 'E' was not declared in this scope
for(int i=head[u];i!=-1;i=E[i].next)
^
0_0_17547644_1945.cpp:48:5: error: 'belong' was not declared in this scope
belong[b]=cnt;
^
0_0_17547644_1945.cpp: In function 'int main()':
0_0_17547644_1945.cpp:61:10: error: 'head' was not declared in this scope
memset(head,-1,sizeof(head));
^
0_0_17547644_1945.cpp:62:10: error: 'dfn' was not declared in this scope
memset(dfn,0,sizeof(dfn));
^
0_0_17547644_1945.cpp:63:10: error: 'low' was not declared in this scope
memset(low,0,sizeof(low));
^
0_0_17547644_1945.cpp:64:10: error: 'ins' was not declared in this scope
memset(ins,0,sizeof(ins));
^
0_0_17547644_1945.cpp:65:10: error: 'belong' was not declared in this scope
memset(belong,0,sizeof(belong));
^
|