QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#586376 | #3736. Tree Intersection | tzl_Dedicatus545 | Compile Error | / | / | C++14 | 3.5kb | 2024-09-24 11:40:27 | 2024-09-24 11:40:28 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In lambda function: answer.code:84:34: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 84 | for(auto [v,i]:adj[u]){ | ^ answer.code: In lambda function: answer.code:98:35: error: inconsistent types ‘int’ and ‘bool’ deduced for lambda return type 98 | return x.l<y.l; | ~~~^~~~ answer.code: In function ‘int main()’: answer.code:115:30: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 115 | auto [l,r,i]=qu[_]; | ^