island.cpp: In member function 'bool main()::Node::operator<(const main()::Node&) const':
island.cpp:37:29: error: 'tie' is not a member of 'std'
37 | return std::tie(rhs.size, idx) < std::tie(size, rhs.idx);
| ^~~
island.cpp:4:1: note: 'std::tie' is defined in header '<tuple>'; did you forget to '#include <tuple>'?
3 | #include <queue>
+++ |+#include <tuple>
4 |
island.cpp:37:55: error: 'tie' is not a member of 'std'
37 | return std::tie(rhs.size, idx) < std::tie(size, rhs.idx);
| ^~~
island.cpp:37:55: note: 'std::tie' is defined in header '<tuple>'; did you forget to '#include <tuple>'?