Problem | sealevel |
---|---|
User | bentl107019 |
Submission Time | 2025-03-11 22:33:47 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
sealevel.cpp: In function ‘void dfs(int, int, int)’:
sealevel.cpp:12:18: error: cannot convert ‘std::pair<int, int>’ to ‘int’ in initialization
12 | for (int i : g[x]) {
| ^
sealevel.cpp:16:12: error: ‘__gnu_cxx::__alloc_traits<std::allocator<std::vector<std::pair<int, int> > >, std::vector<std::pair<int, int> > >::value_type’ {aka ‘class std::vector<std::pair<int, int> >’} has no member named ‘first’
16 | dfs(g[i].first(), x, g[i].second());
| ^~~~~
sealevel.cpp:16:29: error: ‘__gnu_cxx::__alloc_traits<std::allocator<std::vector<std::pair<int, int> > >, std::vector<std::pair<int, int> > >::value_type’ {aka ‘class std::vector<std::pair<int, int> >’} has no member named ‘second’
16 | dfs(g[i].first(), x, g[i].second());
| ^~~~~~