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