제출 #574463

#제출 시각아이디문제언어결과실행 시간메모리
574463ArvinAncient Machine (JOI21_ancient_machine)C++17
0 / 100
86 ms10724 KiB
#include "Anna.h" #include <bits/stdc++.h> using namespace std; #define ll long long namespace { int variable_example = 0; } void Anna(int N, std::vector<char> S) { for(int x=0;x<N;x++){ if(S[x] == 'X'){ Send(1); Send(0); } else if(S[x] == 'Y'){ Send(0); Send(1); } else if(S[x] == 'Z'){ Send(1); Send(1); } } }
#include "Bruno.h" #include <bits/stdc++.h> using namespace std; #define ll long long namespace { int variable_example = 0; int FunctionExample(int P) { return 1 - P; } } // namespace void Bruno(int N, int L, std::vector<int> A) { // for (int i = 0; i < L; i++) { // variable_example += FunctionExample(A[i]); // } int S[N]; for(int x=0;x<N;x++){ S[x] = 0; for(int y=0;y<2;y++){ if(A[2*x+y] == 1){ S[x] += (1 << y); } } } int lst = N; for(int x=N-1;x>=0;x--){ if(S[x] == 3){ lst = x; break; } } vector<int> ans; vector<pair<int, int>> v; int pos = -1; for(int x=0;x<N;x++){ if(S[x] == 3){ if(x != lst){ if(!v.empty()){ if(pos != -1) ans.push_back(pos); ans.push_back(v.back().second); pos = v.back().first; v.pop_back(); } ans.push_back(x); continue; } if(pos != -1){ ans.push_back(pos); pos = -1; } while(!v.empty()){ ans.push_back(v.back().second); ans.push_back(v.back().first); v.pop_back(); } ans.push_back(x); } else if(S[x] == 2){ if(pos != -1){ v.push_back({pos, x}); pos = -1; } else { ans.push_back(x); } } else if(S[x] == 1){ if(pos != -1){ ans.push_back(pos); } pos = x; } } while(!v.empty()){ ans.push_back(v.back().first); ans.push_back(v.back().second); v.pop_back(); } if(pos != -1){ ans.push_back(pos); } for(auto val : ans){ cout << "- " << val << "\n"; Remove(val); } }

컴파일 시 표준 에러 (stderr) 메시지

Anna.cpp:10:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
   10 | int variable_example = 0;
      |     ^~~~~~~~~~~~~~~~

Bruno.cpp:12:5: warning: 'int {anonymous}::FunctionExample(int)' defined but not used [-Wunused-function]
   12 | int FunctionExample(int P) { return 1 - P; }
      |     ^~~~~~~~~~~~~~~
Bruno.cpp:10:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
   10 | int variable_example = 0;
      |     ^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...