Submission #656820

#TimeUsernameProblemLanguageResultExecution timeMemory
656820ktkeremA Difficult(y) Choice (BOI21_books)C++17
0 / 100
1 ms336 KiB
#include<bits/stdc++.h>
#include "books.h"
typedef long long ll;
typedef std::pair<ll , ll> llll;
typedef std::string str;
#define debug std::cout << "debug" << std::endl
#define pb push_back
const ll ous = 1e5 + 7;
ll kp[ous];
ll fun(ll x){
	if(kp[x] == 0){
		kp[x] = skim(x);
	}
	return kp[x];
}
void solve(int n , int m ,ll a , int s){
	ll l = m , r = n+1;
	ll kp[n + 1];
	while(r - l > 1){
		ll md = (l+r)/2;
		ll z = fun(md);
		if(z>=a){
			r = md;
		}
		else{
			l = md;
		}
	}
	ll tot = 0;
	for(ll i = 1;m>i;i++){
		tot+=fun(i);
	}
	if(tot + fun(l) >= a && 2*a >= tot + fun(l)){
		std::vector<int> v;
		for(ll i = 1;m>i;i++){
			v.pb(i);
		}
		v.pb(l);
		answer(v);
		return;
	}
	tot = 0;
	for(ll i = 0;m>=i;i++){
		for(ll j =1;i>=j;j++){
			tot+=fun(j);
		}
		for(ll j = l - (m - i);l>j;j++){
			tot+=fun(j);
		}
		if(tot >= a && 2*a >= tot){
			std::vector<int> v;
			for(ll j =1;i>=j;j++){
				v.pb(j);
			}
			for(ll j = l - (m - i);l>j;j++){
				v.pb(j);
			}
			answer(v);
			return;
		}
		tot = 0;
	}
	impossible();
}
/*int main(){
	#ifndef ONLINE_JUDGE
		freopen("in.txt","r",stdin);
		freopen("out.txt","w",stdout);
	#endif
	ll t = 1;std::cin >> t;
	while(t--){
		solve();
	}
	return 0;
}*/

Compilation message (stderr)

books.cpp: In function 'void solve(int, int, ll, int)':
books.cpp:18:5: warning: unused variable 'kp' [-Wunused-variable]
   18 |  ll kp[n + 1];
      |     ^~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...