QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#166835 | #6515. Path Planning | ucup-team1577# | Compile Error | / | / | C++20 | 3.5kb | 2023-09-06 19:10:21 | 2023-09-06 19:10:21 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In member function ‘int segsmall::query(int, int, int)’: answer.code:68:57: error: ‘INT_MAX’ was not declared in this scope 68 | if(r<tree[now].l||tree[now].r<l) return INT_MAX; | ^~~~~~~ answer.code:11:1: note: ‘INT_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 10 | #include <set> +++ |+#include <climits> 11 | #include <string>