# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1032405 | Maite_Morale | A Difficult(y) Choice (BOI21_books) | C++14 | 2 ms | 1364 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "books.h"
using namespace std;
//
// --- Sample implementation for the task books ---
//
// To compile this program with the sample grader, place:
// books.h books_sample.cpp sample_grader.cpp
// in a single folder and run:
// g++ books_sample.cpp sample_grader.cpp
// in this folder.
//
typedef long long ll ;
#define pll pair<ll,ll>
#define F first
#define S second
#define vll vector<ll>
#define vpll vector<pll>
#define vi vector<int>
void solve(int n, int k, long long A, int S) {
vll v(n+5,0);
vi r={};
vpll knowed;
ll s=0;
///*
for(int i=1;i<=k;i++){
r.push_back(i);
v[i]=skim(i);
knowed.push_back({v[i],i});
s+=v[i];
// cout<<"="<<s<<"\n";
if(s>2*A){
impossible();
return;
}
}
if(s>=A){
answer(r);
return;
}
ll last=n+1;
for(int i=k;i>0;i--){
s-=v[i];
ll p=i,f=last;
for(int j=0;j<knowed.size();j++){
if(s+knowed[j].F<A)p=max(p,knowed[j].S);
}
if(f<=p){
impossible();
return;
}
// cout<<p<<" "<<f<<"\n";
while(abs(p-f)!=1){
ll md=(p+f)/2;
if(v[md]==0){
v[md]=skim(md);
knowed.push_back({v[i],i});
}
if(s+v[md]<A)p=md;
else if(s+v[md]>2*A)f=md;
else{
r[i-1]=md;
answer(r);
return;
}
// cout<<"="<<s<<"+"<<v[md]<<"\n";
}//for(auto x : r)cout<<x<<" ";cout<<"\n";
r[i-1]=p;
s+=v[p];
last=p;
}
impossible();
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |