0_0_24953916_11078.cpp:7:8: error: 'maxn' was not declared in this scope
int dp[maxn];
^
0_0_24953916_11078.cpp:8:15: error: 'maxn' was not declared in this scope
vector<int> v[maxn];
^
0_0_24953916_11078.cpp:9:8: error: 'maxn' was not declared in this scope
int bo[maxn];
^
0_0_24953916_11078.cpp: In function 'void dfs(int, int)':
0_0_24953916_11078.cpp:12:8: error: 'bo' was not declared in this scope
if(bo[num]>=2) return ;
^
0_0_24953916_11078.cpp:13:5: error: 'bo' was not declared in this scope
bo[num]=max(ord,bo[num]);
^
0_0_24953916_11078.cpp:14:19: error: 'v' was not declared in this scope
for(int i=0;i<v[num].size();i++)
^
0_0_24953916_11078.cpp: In function 'int main()':
0_0_24953916_11078.cpp:21:31: error: 'v' was not declared in this scope
for(int i=1;i<=n;i++) v[i].clear();
^
0_0_24953916_11078.cpp:24:13: error: 'v' was not declared in this scope
v[a].push_back(b);
^
0_0_24953916_11078.cpp:28:20: error: 'bo' was not declared in this scope
memset(bo,0,sizeof(bo));
^
|