# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
708796 | Kipras | A Difficult(y) Choice (BOI21_books) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "books.h"
typedef long long ll;
using namespace std;
void solve(ll n, ll k, ll c, ll s){
vector<ll> a;
a.push_back(0);
for(int i = 0; i < n; i++){
a.push_back(skim(i+1));
}
vector<ll> pref;
pref.push_back(0);
for(int i = 1; i <= n; i++){
pref[i]=pref[i-1]+a[i];
}
for(int i = 0; i <= n-k; i++){
if(pref[i+k]-pref[i]>=c&&pref[i+k]-pref[i]<=2*c){
vector<ll> aa;
for(int x = i+1; x <= i+k; x++){
aa.push_back(x);
}
answer(aa);
return;
}
}
impossible();
}