Problem | transform |
---|---|
User | pr0coder |
Submission Time | 2024-01-12 16:57:50 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
transform.cpp: In function ‘int main()’:
transform.cpp:40:9: error: ‘v’ was not declared in this scope
40 | v[a][b] = min(v[a][b], c);
| ^
transform.cpp:47:21: error: ‘v’ was not declared in this scope
47 | v[i][j] = 0;
| ^
transform.cpp:50:17: error: ‘v’ was not declared in this scope
50 | v[i][j] = min(v[i][j], v[i][k] + v[k][j]);
| ^
transform.cpp:59:21: error: ‘v’ was not declared in this scope
59 | v[i][j] = 0;
| ^
transform.cpp:62:17: error: ‘v’ was not declared in this scope
62 | v[i][j] = min(v[i][j], v[i][k] + v[k][j]);
| ^
transform.cpp:71:21: error: ‘v’ was not declared in this scope
71 | v[i][j] = 0;
| ^
transform.cpp:74:17: error: ‘v’ was not declared in this scope