F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_38327164_8741.cpp:85:2: error: stray '#' in program
 }#include <bits/stdc++.h>
  ^
0_0_38327164_8741.cpp:85:3: error: 'include' does not name a type
 }#include <bits/stdc++.h>
   ^
0_0_38327164_8741.cpp:89:11: error: redefinition of 'const int maxn'
 const int maxn = 5e3 + 10;
           ^
0_0_38327164_8741.cpp:5:11: note: 'const int maxn' previously defined here
 const int maxn = 5e3 + 10;
           ^
0_0_38327164_8741.cpp:90:12: error: redefinition of 'int cp [5010]'
 int cp[maxn];
            ^
0_0_38327164_8741.cpp:6:5: note: 'int cp [5010]' previously declared here
 int cp[maxn];
     ^
0_0_38327164_8741.cpp:91:5: error: redefinition of 'int n'
 int n, m, cnt, top, scc;
     ^
0_0_38327164_8741.cpp:7:5: note: 'int n' previously declared here
 int n, m, cnt, top, scc;
     ^
0_0_38327164_8741.cpp:91:8: error: redefinition of 'int m'
 int n, m, cnt, top, scc;
        ^
0_0_38327164_8741.cpp:7:8: note: 'int m' previously declared here
 int n, m, cnt, top, scc;
        ^
0_0_38327164_8741.cpp:91:11: error: redefinition of 'int cnt'
 int n, m, cnt, top, scc;
           ^
0_0_38327164_8741.cpp:7:11: note: 'int cnt' previously declared here
 int n, m, cnt, top, scc;
           ^
0_0_38327164_8741.cpp:91:16: error: redefinition of 'int top'
 int n, m, cnt, top, scc;
                ^
0_0_38327164_8741.cpp:7:16: note: 'int top' previously declared here
 int n, m, cnt, top, scc;
                ^
0_0_38327164_8741.cpp:91:21: error: redefinition of 'int scc'
 int n, m, cnt, top, scc;
                     ^
0_0_38327164_8741.cpp:7:21: note: 'int scc' previously declared here
 int n, m, cnt, top, scc;
                     ^
0_0_38327164_8741.cpp:92:13: error: redefinition of 'int stk [5010]'
 int stk[maxn], dfn[maxn];
             ^
0_0_38327164_8741.cpp:8:5: note: 'int stk [5010]' previously declared here
 int stk[maxn], dfn[maxn];
     ^
0_0_38327164_8741.cpp:92:24: error: redefinition of 'int dfn [5010]'
 int stk[maxn], dfn[maxn];
                        ^
0_0_38327164_8741.cpp:8:16: note: 'int dfn [5010]' previously declared here
 int stk[maxn], dfn[maxn];
                ^
0_0_38327164_8741.cpp:93:13: error: redefinition of 'int col [5010]'
 int col[maxn], low[maxn];
             ^
0_0_38327164_8741.cpp:9:5: note: 'int col [5010]' previously declared here
 int col[maxn], low[maxn];
     ^
0_0_38327164_8741.cpp:93:24: error: redefinition of 'int low [5010]'
 int col[maxn], low[maxn];
                        ^
0_0_38327164_8741.cpp:9:16: note: 'int low [5010]' previously declared here
 int col[maxn], low[maxn];
                ^
0_0_38327164_8741.cpp:94:16: error: redefinition of 'bool instk [5010]'
 bool instk[maxn], vis[maxn];
                ^
0_0_38327164_8741.cpp:10:6: note: 'bool instk [5010]' previously declared here
 bool instk[maxn], vis[maxn];
      ^
0_0_38327164_8741.cpp:94:27: error: redefinition of 'bool vis [5010]'
 bool instk[maxn], vis[maxn];
                           ^
0_0_38327164_8741.cpp:10:19: note: 'bool vis [5010]' previously declared here
 bool instk[maxn], vis[maxn];
                   ^
0_0_38327164_8741.cpp:95:23: error: redefinition of 'std::vector<int> edge [5010]'
 vector <int> edge[maxn], rdge[maxn];
                       ^
0_0_38327164_8741.cpp:11:14: note: 'std::vector<int> edge [5010]' previously declared here
 vector <int> edge[maxn], rdge[maxn];
              ^
0_0_38327164_8741.cpp:95:35: error: redefinition of 'std::vector<int> rdge [5010]'
 vector <int> edge[maxn], rdge[maxn];
                                   ^
0_0_38327164_8741.cpp:11:26: note: 'std::vector<int> rdge [5010]' previously declared here
 vector <int> edge[maxn], rdge[maxn];
                          ^
0_0_38327164_8741.cpp: In function 'void init()':
0_0_38327164_8741.cpp:97:13: error: redefinition of 'void init()'
 inline void init() {
             ^
0_0_38327164_8741.cpp:13:13: note: 'void init()' previously defined here
 inline void init() {
             ^
0_0_38327164_8741.cpp: In function 'int tarjan(int)':
0_0_38327164_8741.cpp:107:5: error: redefinition of 'int tarjan(int)'
 int tarjan(int u) {
     ^
0_0_38327164_8741.cpp:23:5: note: 'int tarjan(int)' previously defined here
 int tarjan(int u) {
     ^
0_0_38327164_8741.cpp: In function 'bool match(int)':
0_0_38327164_8741.cpp:124:6: error: redefinition of 'bool match(int)'
 bool match(int u) {
      ^
0_0_38327164_8741.cpp:40:6: note: 'bool match(int)' previously defined here
 bool match(int u) {
      ^
0_0_38327164_8741.cpp: In function 'void solve()':
0_0_38327164_8741.cpp:136:13: error: redefinition of 'void solve()'
 inline void solve() {
             ^
0_0_38327164_8741.cpp:52:13: note: 'void solve()' previously defined here
 inline void solve() {
             ^
0_0_38327164_8741.cpp: In function 'int main()':
0_0_38327164_8741.cpp:160:5: error: redefinition of 'int main()'
 int main() {
     ^
0_0_38327164_8741.cpp:76:5: note: 'int main()' previously defined here
 int main() {
     ^


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-09-21 10:50:43, Gzip enabled