Problem graphcraft
User Alloy
Submission Time 2023-10-07 20:25:31
Score 0
Max Time N/A
Max Memory N/A

Compile Error

graphcraft.cpp: In function ‘void dfs(ll, ll)’:
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 ‘ll’ {aka ‘int’}
20 | dfs(i, val);
| ^
| |
| std::pair<int, int>
graphcraft.cpp:11:13: note: initializing argument 1 of ‘void dfs(ll, ll)’
11 | void dfs(ll cur, ll 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,