Submission #503093

#TimeUsernameProblemLanguageResultExecution timeMemory
503093leinad2Minerals (JOI19_minerals)C++17
Compilation error
0 ms0 KiB
#include "minerals.h" #include<bits/stdc++.h> using namespace std; vector<int>A; vector<vector<int> >v; int a; void solve() { bool flag=true;print(v); for(int i=0;i<v.size();i++)if(v[i].size()>=2)flag=false; if(flag)return; int sz=0; for(int i=0;i<v.size();i++) { if(i%2==0) { for(int j=sz+(v[i].size()+1)/2;j<sz+v[i].size();j++)Query(A[j]); } else { for(int j=sz;j<sz+(v[i].size()+1)/2;j++)Query(A[j]); } sz+=v[i].size(); } vector<vector<int> >V; for(int i=0;i<v.size();i++) { vector<int>Fi, Se; for(auto p:v[i]) { int b=Query(p); if(a!=b)Se.push_back(p); else Fi.push_back(p); a=b; } V.push_back(Fi); V.push_back(Se); } v=V; solve(); } void Solve(int N) { vector<int>A, B; for(int i=1;i<=2*N;i++) { int b=Query(i); if(a!=b)A.push_back(i); else B.push_back(i); a=b; } ::A=A; v={B}; solve(); for(int i=0;i<N;i++)Answer(A[i], v[i][0]); }

Compilation message (stderr)

minerals.cpp: In function 'void solve()':
minerals.cpp:9:20: error: 'print' was not declared in this scope; did you mean 'printf'?
    9 |     bool flag=true;print(v);
      |                    ^~~~~
      |                    printf
minerals.cpp:10:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |     for(int i=0;i<v.size();i++)if(v[i].size()>=2)flag=false;
      |                 ~^~~~~~~~~
minerals.cpp:13:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |     for(int i=0;i<v.size();i++)
      |                 ~^~~~~~~~~
minerals.cpp:17:45: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |             for(int j=sz+(v[i].size()+1)/2;j<sz+v[i].size();j++)Query(A[j]);
      |                                            ~^~~~~~~~~~~~~~~
minerals.cpp:21:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   21 |             for(int j=sz;j<sz+(v[i].size()+1)/2;j++)Query(A[j]);
      |                          ~^~~~~~~~~~~~~~~~~~~~~
minerals.cpp:26:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |     for(int i=0;i<v.size();i++)
      |                 ~^~~~~~~~~