coprobber.cpp: In function 'bool dfs(int, int, int)':
coprobber.cpp:7:32: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
7 | if(c==r) return ok[c][r][t]=1;
| ~~~~~~~~~~~^~
coprobber.cpp:15:51: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
15 | return vis[c][r][t]=1,inp[c][r][t]=ok[c][r][t]=0;
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
coprobber.cpp:16:43: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
16 | return inp[c][r][t]=0,vis[c][r][t]=1;
| ~~~~~~~~~~~~^~
coprobber.cpp:18:69: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
18 | if(dfs(c,r,1)) return move[c][r] = c,inp[c][r][t]=0,vis[c][r][t]=ok[c][r][t]=1;
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
coprobber.cpp:21:60: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
21 | return move[c][r]=i,inp[c][r][t]=0,vis[c][r][t]=ok[c][r][t]=1;
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
coprobber.cpp:22:53: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
22 | return move[c][r]=-1,vis[c][r][t]=1,inp[c][r][t]=0;
| ~~~~~~~~~~~~^~