| Problem | fun |
|---|---|
| User | 0rang3 |
| Submission Time | 2026-05-14 02:02:23 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fun.cpp:2:1: error: ‘vector’ does not name a type
2 | vector<int> b[3];
| ^~~~~~
fun.cpp:3:1: error: expected unqualified-id before ‘for’
3 | for (int i = 0; i < N; ++i) {
| ^~~
fun.cpp:3:17: error: ‘i’ does not name a type
3 | for (int i = 0; i < N; ++i) {
| ^
fun.cpp:3:24: error: expected unqualified-id before ‘++’ token
3 | for (int i = 0; i < N; ++i) {
| ^~
fun.cpp:20:1: error: ‘vector’ does not name a type
20 | vector<pair<int, vector<int>>> branches;
| ^~~~~~
fun.cpp:21:32: error: ‘adj_sz’ was not declared in this scope
21 | int num_branches = min(3, (int)adj_sz.size()); // <--- FIX APPLIED HERE
| ^~~~~~
fun.cpp:21:20: error: ‘min’ was not declared in this scope
21 | int num_branches = min(3, (int)adj_sz.size()); // <--- FIX APPLIED HERE
|