# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772996 | Imeon | A Difficult(y) Choice (BOI21_books) | C++17 | 186 ms | 1076 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;
K--;
for (int i = 1; i <= N;i++){
x[i] = skim(i);
if (i <= K)sm += x[i];
}
int l = K,r = N + 1;
while (l + 1 < r){
int md = (l + r) / 2;
if ((x[md] + sm) > 2ll * A)r = md;
else l = md;
}
sm += x[l];
if (l == K or sm > 2LL * A)impossible();
if (sm >= A and sm <= 2LL * A){
vector<int>v;
for (int j = 1; j <= K; j++){
v.push_back(j);
}
v.push_back(l);
answer(v);
}
K++;
sm = 0;
for (int i = 1; i <= N;i++){
sm += x[i];
if (i > K){sm -= x[i - K];}
if (i >= K and sm >= A and sm <= 2LL * A){
vector<int>v;
for (int j = i - K + 1; j <= i; j++){
v.push_back(j);
}
answer(v);
}
}
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... |