fireworks.cpp: In function 'void dfs(long long int, long long int)':
fireworks.cpp:22:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
22 | if(u==p) continue; dfs(u,s);
| ^~
fireworks.cpp:22:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
22 | if(u==p) continue; dfs(u,s);
| ^~~
fireworks.cpp: In function 'int32_t main()':
fireworks.cpp:44:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
44 | for(int i = 0; i <= 300; i++) if(ok[1][i]) ans=min(ans, dp[1][i]); cout << ans;
| ^~~
fireworks.cpp:44:69: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
44 | for(int i = 0; i <= 300; i++) if(ok[1][i]) ans=min(ans, dp[1][i]); cout << ans;
| ^~~~