# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
306249 | qpwoeirut | 비스킷 담기 (IOI20_biscuits) | C++17 | 2 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
long long count_tastiness(long long x, std::vector<long long> a) {
a.resize(128, 0);
//cerr << "a: "; for (int i=0; i<a.size(); ++i) cerr << a[i] << ' '; cerr << endl;
int add = 0;
for (int i=0; i<a.size(); ++i) {
a[i] += add;
add = max(0LL, (a[i] - x) >> 1);
a[i] -= add << 1;
}
//cerr << "a: "; for (int i=0; i<a.size(); ++i) cerr << a[i] << ' '; cerr << endl;
ll ans = 1;
for (int i=0; i<a.size(); ++i) {
if (a[i] >= x) ans <<= 1;
}
//cerr << "base: " << ans << endl;
int cur = 0;
for (int i=0; i<a.size(); ++i) {
if (a[i] > x) {
++cur;
a[i+1] += a[i] >> 1;
a[i] = 0;
}
else {
if (cur > 0) {
ans += ans >> cur;
}
cur = 0;
}
}
return ans;
}
/*
2
3 3
5 2 1
3 2
2 1 2
1
5 1
0 1 1 1 2
1
4 1
1 5 2 9
1
5 1
0 0 0 1 0
1
1 1
128
*/
컴파일 시 표준 에러 (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... |