circuit.cpp: In function 'void dfs2(ll)':
circuit.cpp:10:35: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | #define FOR(i, x, y) for(ll i=x; i<y; i++)
......
47 | FOR(i,0,edges[a].size()+1) FOR(j,0,edges[a].size()+1) dp[i][j] = 0;
| ~~~~~~~~~~~~~~~~~~~~~
circuit.cpp:47:3: note: in expansion of macro 'FOR'
47 | FOR(i,0,edges[a].size()+1) FOR(j,0,edges[a].size()+1) dp[i][j] = 0;
| ^~~
circuit.cpp:10:35: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | #define FOR(i, x, y) for(ll i=x; i<y; i++)
......
47 | FOR(i,0,edges[a].size()+1) FOR(j,0,edges[a].size()+1) dp[i][j] = 0;
| ~~~~~~~~~~~~~~~~~~~~~
circuit.cpp:47:30: note: in expansion of macro 'FOR'
47 | FOR(i,0,edges[a].size()+1) FOR(j,0,edges[a].size()+1) dp[i][j] = 0;
| ^~~
circuit.cpp:10:35: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | #define FOR(i, x, y) for(ll i=x; i<y; i++)
......
53 | FOR(i,0,edges[a].size()){
| ~~~~~~~~~~~~~~~~~~~
circuit.cpp:53:3: note: in expansion of macro 'FOR'
53 | FOR(i,0,edges[a].size()){
| ^~~
circuit.cpp:10:35: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | #define FOR(i, x, y) for(ll i=x; i<y; i++)
......
55 | FOR(j,0,edges[a].size()){
| ~~~~~~~~~~~~~~~~~~~
circuit.cpp:55:5: note: in expansion of macro 'FOR'
55 | FOR(j,0,edges[a].size()){
| ^~~
circuit.cpp:63:6: warning: unused variable 'cur' [-Wunused-variable]
63 | ll cur = 0;
| ^~~