# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772840 | Imeon | A Difficult(y) Choice (BOI21_books) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include"books.h"
using namespace std;
void solve(int N, int K, long long A, int S) {
cin >> N >> K >> S >> A;
long long x[N + 1];
long long sm = 0;
int f = 0;
for (int i = 1; i <= S + 1;i++){
// cin >> x[i];
x[i] = skim(i);
sm += x[i];
f++;
if (f > K){sm -= x[i - K - 1];}
if (f == K and sm >= A and sm <= 2ll * A){
vector<int>v;
for (int j = i - K; j <= i; j++){
// cout << j << " ";
v.push_back(j);
}
// cout << '\n';
answer(v);
}
}
// cout << -1;
impossible();
}
int main () {
solve(4,4,4ll,2);
}