Submission #656806

#TimeUsernameProblemLanguageResultExecution timeMemory
656806ktkeremA Difficult(y) Choice (BOI21_books)C++17
0 / 100
1 ms1092 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]; memset(kp , -1 , sizeof(kp)); 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; }*/
#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...