Submission #1188871

#TimeUsernameProblemLanguageResultExecution timeMemory
1188871mareksbArt Collections (BOI22_art)C++17
70 / 100
755 ms484 KiB
#include "art.h"
#include<bits/stdc++.h>
#pragma GCC optimize ("O3,unroll-loops")
#pragma GCC target ("avx2,bmi,bmi2,popcnt,lzcnt")
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> ans;
    for(int i=0;i<N;i++){
        vector<int> pub;
        pub.push_back(i+1);
        for(int j=0;j<N;j++){
            if(i+1==j+1)continue;
            pub.push_back(j+1);
        }
        int d1=publish(pub);
        pub.erase(pub.begin());
        pub.push_back(i+1);
        int d2=publish(pub);
        ans.push_back((d1-d2+(N%2==0))/2+N/2-(N%2==0));
    }
    vector<int> rans(N);
    for(int i=0;i<N;i++){
        //cout<<ans[i]<<' ';
        rans[ans[i]]=i+1;
    }
    //cout<<'\n';
    answer(rans);

}
/*
int publish(vector<int>);
void answer(vector<int>);
*/
#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...