0_0_39216221_26739.cpp: In function 'void Init(int)':
0_0_39216221_26739.cpp:18:5: error: 'memset' was not declared in this scope
18 | memset(m_head, 0xFF, sizeof(int) * (n + 1));
| ^~~~~~
0_0_39216221_26739.cpp:4:1: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
3 | #include <queue>
+++ |+#include <cstring>
4 |
0_0_39216221_26739.cpp: In function 'bool SPFA(int, int)':
0_0_39216221_26739.cpp:50:9: error: 'memset' was not declared in this scope
50 | memset(m_dis, 0x3F, sizeof(int) * (ed + 1));
| ^~~~~~
0_0_39216221_26739.cpp:50:9: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
|