Submission #1188852

#TimeUsernameProblemLanguageResultExecution timeMemory
1188852herissonwowwArt Collections (BOI22_art)C++20
5 / 100
17 ms408 KiB
#include "art.h" #include <bits/stdc++.h> using namespace std; // // --- Sample implementation for the task art --- // // To compile this program with the sample grader, place: // art.h art_sample.cpp sample_grader.cpp // in a single folder, then open the terminal in this directory (right-click onto an empty spot in the directory, // left click on "Open in terminal") and enter e.g.: // g++ -std=c++17 art_sample.cpp sample_grader.cpp // in this folder. This will create a file a.out in the current directory which you can execute from the terminal // as ./a.out // See task statement or sample_grader.cpp for the input specification // void solve(int n) { vector <int> vals(n); for(int i = 0; i < n; i++){ vals[i] = i+1; } do { int k = publish(vals); if(k==0){ answer(vals); return; } } while (next_permutation(vals.begin(), vals.end())); assert(0); // int k = publish(order); // cout << k << endl; // order = {2, 3, 1}; // k = publish(order); // cout << k << endl; // // order = {1, 3, 2}; // k = publish(order); // cout << k << endl; // answer(order); }
#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...