Submission #720737

#TimeUsernameProblemLanguageResultExecution timeMemory
720737NeroZeinArt Collections (BOI22_art)C++17
70 / 100
1617 ms748 KiB
#include "art.h" #include <bits/stdc++.h> using namespace std; void solve(int N) { int n = N; vector<int> Ans(n); for (int i = 1; i <= n; ++i) { vector<int> order = {i}; for (int j = 1; j <= n; ++j) { if (j != i) { order.push_back(j); } } int org = publish(order); order.clear(); for (int j = 1; j <= n; ++j) { if (j != i) { order.push_back(j); } } order.push_back(i); int New = publish(order); int x = (n - 1 - org + New) / 2; int y = n - 1 - x; Ans[y] = i; } answer(Ans); }

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...