# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
681554 | YENGOYAN | A Difficult(y) Choice (BOI21_books) | C++17 | 3065 ms | 976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "books.h"
using namespace std;
using ll = long long;
//
// --- 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.
//
void solve(int n, int k, long long a, int s) {
vector<ll> vec(n);
ll sm = 0;
for (int i = 0; i < k - 1; ++i) {
vec[i] = skim(i + 1);
sm += vec[i];
}
int l = k - 2, r = n - 1;
while (l + 1 < r) {
int m = (l + r) >> 1;
ll b = vec[m];
if (!b) b = skim(m + 1);
vec[m] = b;
if (b > a) r = m;
else l = m;
}
if (sm + vec[r] < a || sm + vec[r] > 2 * a) {
vector<int> ids;
for (int i = 0; i < k; ++i) {
if (!vec[i]) vec[i] = skim(i + 1);
ids.push_back(i);
}
for (int i = max(r - k, k); i <= r; ++i) {
if (!vec[i]) vec[i] = skim(i + 1);
ids.push_back(i);
}
for (int i = 0; i + k - 1 < ids.size(); ++i) {
sm = 0;
for (int j = 0; j < k; ++i) {
sm += vec[ids[i + j]];
}
if (sm >= a && sm <= 2 * a) {
vector<int> ans;
for (int j = 0; j < k; ++j) ans.push_back(ids[i + j] + 1);
answer(ans);
return;
}
}
impossible();
return;
}
vector<int> ans;
for (int i = 1; i < k; ++i) ans.push_back(i);
ans.push_back(r + 1);
answer(ans);
}
컴파일 시 표준 에러 (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... |