Submission #575014

#TimeUsernameProblemLanguageResultExecution timeMemory
575014m_fenaisA Difficult(y) Choice (BOI21_books)C++14
0 / 100
488 ms300 KiB
#include "books.h"
typedef long long ll;
using namespace std;
void solve(int N, int K, long long A, int S) {
  vector<long long> v;
  v.push_back(0);
  for(int i=1; i<=N; i++){
    v.push_back(skim(i));
  }
  for(int i=1; i<=v.size()-2; i++)
  {
    for(int j=i+1; j<=v.size()-1; j++)
    {
      for(int z=j+1; z<=v.size(); z++)
      {
        ll cnt = v[i] + v[j] + v[z];
        if(cnt <= A*2 && cnt >= A)
        {
          vector<int> ans;
          ans.push_back(i);
          ans.push_back(j);
          ans.push_back(z);
          answer(ans);
        }
      }
    }
  }
  impossible();
}

Compilation message (stderr)

books.cpp: In function 'void solve(int, int, long long int, int)':
books.cpp:10:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |   for(int i=1; i<=v.size()-2; i++)
      |                ~^~~~~~~~~~~~
books.cpp:12:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |     for(int j=i+1; j<=v.size()-1; j++)
      |                    ~^~~~~~~~~~~~
books.cpp:14:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |       for(int z=j+1; z<=v.size(); z++)
      |                      ~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...