Problem topical
User joc117
Submission Time 2025-03-22 09:11:01
Score 0
Max Time N/A
Max Memory N/A

Compile Error

topical.cpp: In function ‘int main()’:
topical.cpp:7:4: error: ‘vector’ was not declared in this scope
7 | vector<tuple<int, vector<int>, vector<int>>> modules;
| ^~~~~~
topical.cpp:2:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
1 | #include <iostream>
+++ |+#include <vector>
2 | using namespace std;
topical.cpp:7:32: error: template argument 2 is invalid
7 | vector<tuple<int, vector<int>, vector<int>>> modules;
| ^
topical.cpp:7:42: error: expected primary-expression before ‘int’
7 | vector<tuple<int, vector<int>, vector<int>>> modules;
| ^~~
topical.cpp:10:12: error: expected primary-expression before ‘int’
10 | vector<int> req(k);
| ^~~
t