bitaro.cpp: In lambda function:
bitaro.cpp:16:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
16 | if (f2[cur]) return; f2[cur] = 1;
| ^~
bitaro.cpp:16:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
16 | if (f2[cur]) return; f2[cur] = 1;
| ^~
bitaro.cpp: In function 'int main()':
bitaro.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
8 | scanf("%d %d %d", &n, &m, &q);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bitaro.cpp:10:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | while (m--) scanf("%d %d", &x, &y), v[x].emplace_back(y);
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | scanf("%d %d", &t, &r);
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:14:27: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
14 | for (auto &e: c) scanf("%d", &e), f[e] = 1;
| ~~~~~^~~~~~~~~~