# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
399154 | AlexLuchianov | A Difficult(y) Choice (BOI21_books) | C++14 | 2 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <algorithm>
#include "books.h"
//
// --- 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.
//
using ll = long long;
std::vector<int> combine(std::vector<int> a, std::vector<int> b) {
for(int i = 0; i < b.size(); i++)
a.push_back(b[i]);
return a;
}
std::vector<int> extract(int from, int to) {
std::vector<int> aux;
for(int i = from; i <= to; i++)
aux.push_back(i);
return aux;
}
void solve(int N, int K, long long A, int S) {
// TODO implement this function
int pos = 1;
for(int jump = (1 << 20); 0 < jump; jump /= 2)
if(pos + jump <= N && skim(pos + jump) < A)
pos += jump;
if(pos + 1 < K) {
impossible();
return ;
}
std::vector<std::pair<int,ll>> myvec;
myvec.push_back({0, 0});
for(int i = 1;i <= K; i++)
myvec.push_back({i, skim(i)});
for(int i = std::max(K + 1, pos - K); i <= pos; i++)
myvec.push_back({i, skim(i)});
if(pos < N) {
ll sum = 0;
for(int j = 1;j < K; j++)
sum += myvec[j].second;
if(sum + skim(pos + 1) <= 2 * A) {
answer(combine(extract(1, K - 1), extract(pos + 1, pos + 1)));
return ;
}
}
if(myvec.size() <= K) {
impossible();
return ;
}
for(int i = 0;i <= K; i++) {
int j = K - i;
ll sum = 0;
std::vector<int> sol;
for(int id = 1; id <= i; id++) {
sum += myvec[id].second;
sol.push_back(myvec[id].first);
}
for(int id = myvec.size() - j; id <= myvec.size() - 1; id++) {
sum += myvec[id].second;
sol.push_back(myvec[id].first);
}
if(A <= sum && sum <= 2 * A) {
answer(sol);
return ;
}
}
impossible();
}
컴파일 시 표준 에러 (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... |