Anthony.cpp:34:40: warning: bad option '-funroll-lopps' to pragma 'optimize' [-Wpragmas]
34 | #pragma GCC optimize ("03,unroll-lopps")
| ^
Anthony.cpp:38:33: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
38 | int FunctionExample(int i, int A) {
| ^
Anthony.cpp:45:71: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
45 | vector<int> Mark(int n,int m, int a, int b,vector<int> U,vector<int> V) {
| ^
Anthony.cpp: In function 'std::vector<int> Mark(int, int, int, int, std::vector<int>, std::vector<int>)':
Anthony.cpp:75:50: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
75 | function<void(int,int)> dfs=[&](int cur,int p){
| ^
Anthony.cpp: At global scope:
Anthony.cpp:41:5: warning: '{anonymous}::x' defined but not used [-Wunused-variable]
41 | int x=0;
| ^
Anthony.cpp:38:5: warning: 'int {anonymous}::FunctionExample(int, int)' defined but not used [-Wunused-function]
38 | int FunctionExample(int i, int A) {
| ^~~~~~~~~~~~~~~
Catherine.cpp:34:40: warning: bad option '-funroll-lopps' to pragma 'optimize' [-Wpragmas]
34 | #pragma GCC optimize ("03,unroll-lopps")
| ^
Catherine.cpp:47:23: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
47 | void Init(int A, int B) {
| ^
Catherine.cpp:51:23: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
51 | int Move(vector<int> y){
| ^
Catherine.cpp: In function 'int Move(std::vector<int>)':
Catherine.cpp:57:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | for(int i=0;i<y.size();i++)if(y[i])return i;
| ~^~~~~~~~~
Catherine.cpp:69:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | for(int i=0;i<y.size();i++)if(y[i]){
| ~^~~~~~~~~
Catherine.cpp:88:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
88 | for(int i=0;i<y.size();i++)if(y[i]){
| ~^~~~~~~~~
Catherine.cpp: At global scope:
Catherine.cpp:44:5: warning: '{anonymous}::deadend' defined but not used [-Wunused-variable]
44 | int deadend=0;
| ^~~~~~~
Catherine.cpp:41:5: warning: '{anonymous}::st' defined but not used [-Wunused-variable]
41 | int st=0,found=0,cnt=0;
| ^~
Catherine.cpp:40:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
40 | int variable_example = 0;
| ^~~~~~~~~~~~~~~~