Submission #1046503

#TimeUsernameProblemLanguageResultExecution timeMemory
1046503vjudge1Art Collections (BOI22_art)C++17
100 / 100
915 ms1872 KiB
#include "art.h" #include <bits/stdc++.h> using namespace std; #define ar array //#define int long long #define ld long double void solve(int n) { vector<int> v; for(int i = 1;i<=n;i++)v.push_back(i); int ans[n+1]; for(int i = 0;i<n;i++){ ans[i] = publish(v); v.push_back(v[0]); v.erase(v.begin()); } ans[n] = ans[0]; for(int i = 0;i<n;i++){ int x = ans[i] - (ans[i] + ans[i+1] - n + 1) / 2; v[x] = 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...