QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#685657 | #9530. A Game On Tree | ucup-team4633 | Compile Error | / | / | C++23 | 8.5kb | 2024-10-28 20:39:40 | 2024-10-28 20:39:41 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In lambda function: answer.code:332:24: error: expected identifier before ‘this’ 332 | auto dfs = [&](this auto && dfs, int u) ->void { | ^~~~ answer.code:332:24: error: expected ‘,’ or ‘...’ before ‘this’ answer.code: In lambda function: answer.code:333:17: error: ‘u’ was not declared in this scope 333 | siz[u] += 1; | ^ answer.code:339:17: error: use of ‘dfs’ before deduction of ‘auto’ 339 | dfs(v); | ^~~