Problem | journey3 |
---|---|
User | PlayVoltz |
Submission Time | 2023-10-20 09:03:45 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
journey3.cpp: In function ‘int journey(int, int)’:
journey3.cpp:27:42: error: expected ‘;’ before ‘return’
27 | dp[node][time]=min(dp[node][time], MAXN)
| ^
| ;
28 | return dp[node][time];
| ~~~~~~