circle_selection.cpp: In function 'std::__cxx11::string st1()':
circle_selection.cpp:19:25: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define FOR(ii, ss, ee) for(ll ii = ss; ii < ee; ++ii)
^
circle_selection.cpp:55:2: note: in expansion of macro 'FOR'
FOR(i,0,n) cout << ans[i] + 1 << ' '; cout << '\n';
^~~
circle_selection.cpp:55:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
FOR(i,0,n) cout << ans[i] + 1 << ' '; cout << '\n';
^~~~
circle_selection.cpp: In function 'std::__cxx11::string st2()':
circle_selection.cpp:19:25: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define FOR(ii, ss, ee) for(ll ii = ss; ii < ee; ++ii)
^
circle_selection.cpp:85:2: note: in expansion of macro 'FOR'
FOR(i,0,n) cout << ans[i]+1 << ' '; cout << '\n';
^~~
circle_selection.cpp:85:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
FOR(i,0,n) cout << ans[i]+1 << ' '; cout << '\n';
^~~~
circle_selection.cpp: In function 'void st3()':
circle_selection.cpp:120:7: warning: unused variable 'r' [-Wunused-variable]
ll r = A[i].f; ll x = C[i].f;
^
circle_selection.cpp:19:25: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define FOR(ii, ss, ee) for(ll ii = ss; ii < ee; ++ii)
^
circle_selection.cpp:157:2: note: in expansion of macro 'FOR'
FOR(i,0,n) cout << ans[i]+1 << ' '; cout<<'\n';
^~~
circle_selection.cpp:157:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
FOR(i,0,n) cout << ans[i]+1 << ' '; cout<<'\n';
^~~~
circle_selection.cpp: In function 'void st4()':
circle_selection.cpp:230:24: warning: unused variable 'y' [-Wunused-variable]
ll x = mp[C[i].f/R], y = C[i].s;
^