QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#398755 | #3736. Tree Intersection | ucup-team1383 | Compile Error | / | / | C++17 | 1.6kb | 2024-04-25 17:53:05 | 2024-04-25 17:53:06 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:8:1: error: ‘vector’ does not name a type 8 | vector<int>vct[N]; | ^~~~~~ answer.code: In function ‘void dfs1(int, int)’: answer.code:14:22: error: ‘vct’ was not declared in this scope 14 | for (int y : vct[x]) | ^~~ answer.code: In function ‘void add(int)’: answer.code:34:22: error: ‘vct’ was not declared in this scope 34 | for (int y : vct[x]) | ^~~ answer.code: In function ‘void delet(int)’: answer.code:42:22: error: ‘vct’ was not declared in this scope 42 | for (int y : vct[x]) | ^~~ answer.code: In function ‘void dfs2(int, bool)’: answer.code:48:22: error: ‘vct’ was not declared in this scope 48 | for (int y : vct[x]) | ^~~ answer.code:53:22: error: ‘vct’ was not declared in this scope 53 | for (int y : vct[x]) | ^~~ answer.code: In function ‘int main()’: answer.code:75:25: error: ‘vct’ was not declared in this scope 75 | vct[i].clear(); | ^~~ answer.code:82:25: error: ‘vct’ was not declared in this scope 82 | vct[u[i]].push_back(v[i]); | ^~~