QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#472069 | #602. 最小费用最大流(随机数据) | monstersqwq# | Compile Error | / | / | C++17 | 3.6kb | 2024-07-11 14:16:22 | 2024-07-11 14:16:22 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void dinic()’: answer.code:117:28: error: ‘INT_MAX’ was not declared in this scope 117 | ll t=dfs(S,INT_MAX); | ^~~~~~~ answer.code:18:1: note: ‘INT_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 17 | #include<bitset> +++ |+#include <climits> 18 | #include<numeric>