0_0_38703001_22050.cpp: In function 'bool dfs(const unsigned int&)':
0_0_38703001_22050.cpp:13:33: error: 'UINT32_MAX' was not declared in this scope
13 | if (match[v] == UINT32_MAX || dfs(match[v])) { match[v] = u; match[u] = v; return true; }
| ^~~~~~~~~~
0_0_38703001_22050.cpp:4:1: note: 'UINT32_MAX' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
3 | #include<bitset>
+++ |+#include <cstdint>
4 | #pragma warning(disable:4996)
0_0_38703001_22050.cpp: In function 'int main()':
0_0_38703001_22050.cpp:26:67: error: 'UINT32_MAX' was not declared in this scope
26 | vis.reset(); side.reset(); fill(match, match + n, UINT32_MAX); a = 0;
| ^~~~~~~~~~
0_0_38703001_22050.cpp:26:67: note: 'UINT32_MAX' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
|