Submission #1161887

#TimeUsernameProblemLanguageResultExecution timeMemory
1161887cnn008Art Collections (BOI22_art)C++20
100 / 100
789 ms508 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
//
map <int,int> mp;
void solve(int N) {
    vector <int> p(N,0);
    iota(p.begin(),p.end(),1);
    int cur=publish(p),precur=cur;
    vector <int> ans={1};
    for(int i=2; i<=N; i++){
        p.clear();
        for(int j=i; j; j--) p.push_back(j);
        for(int j=i+1; j<=N; j++) p.push_back(j);
        cur=publish(p);
        int diff=cur-precur;
        int x=(diff+i-1)/2;
        vector <int> ans_;
        for(int j=0; j<x; j++) ans_.push_back(ans[j]);
        ans_.push_back(i);
        for(int j=x; j<(int)ans.size(); j++) ans_.push_back(ans[j]);
        ans.swap(ans_);
        precur=cur;
    }
    answer(ans);
    return;
}
#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...