QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
詳細信息
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); | ^~~