Submission #595616

#TimeUsernameProblemLanguageResultExecution timeMemory
595616vh50Art Collections (BOI22_art)C++17
5 / 100
18 ms208 KiB
#include <bits/stdc++.h> #include "art.h" using namespace std; void solve(int N) { vector <int> v, f; for(int i = 1; i <= N; i++) {v.push_back(i); f.push_back(0);} if(N <= 6) { while(publish(v)) { next_permutation(v.begin(), v.end()); } answer(v); } else if(N <= 40) { for(int i = 0; i < N; i++) for(int j = i + 1; j < N; j++) { swap(v[0], v[i]); swap(v[1], v[j]); int k = publish(v); swap(v[0], v[1]); if(k - publish(v)) f[j]++; else f[i]++; } for(int i = 0; i < N; i++) { v[f[i]] = i + 1; } answer(v); } }

Compilation message (stderr)

interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
#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...