Problem | graphcraft |
---|---|
User | Alloy |
Submission Time | 2023-10-07 20:26:33 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
graphcraft.cpp: In function ‘void dfs(int, int)’:
graphcraft.cpp:18:25: error: ‘class std::vector<std::pair<int, int> >’ has no member named ‘second’
18 | val *= adjList[cur].second;
| ^~~~~~
graphcraft.cpp:20:13: error: cannot convert ‘std::pair<int, int>’ to ‘int’
20 | dfs(i, val);
| ^
| |
| std::pair<int, int>
graphcraft.cpp:11:14: note: initializing argument 1 of ‘void dfs(int, int)’
11 | void dfs(int cur, int val) {
| ~~~~^~~
graphcraft.cpp: In function ‘int graphcraft(int, int, std::vector<std::pair<int, int> >*)’:
graphcraft.cpp:32:19: error: no matching function for call to ‘begin(std::vector<std::pair<int, int> >*&)’
32 | for (auto& i: V) {
| ^
In file included from /usr/include/c++/9/bits/range_access.h:36,
from