# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
622811 | erekle | 비스킷 담기 (IOI20_biscuits) | C++17 | 1096 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
const int MX = 60;
inline bool multOverflow(long long a, long long b) {
if (!a || !b) return false;
long long c = a*b;
if (a == c/b) return false;
return true;
}
long long count_tastiness(long long x, vector<long long> a) {
int k = a.size();
k = MX;
while (a.size() < k) a.push_back(0);
long long maxSum = 0;
for (int i = 0; i < k; ++i) {
maxSum += (1LL << i) * a[i];
}
auto possible = [&k, &a, &maxSum, &x](const bitset<MX> &y) {
long long extra = maxSum;
// for (int i = 0; i < k && extra >= 0; ++i) {
// if (y[i]) {
// if (multOverflow(x, (1 << i))) return false;
// extra -= x*(1 << i);
// }
// }
if (extra < 0) return false;
long long need = 0; // as a multiple of current power of two
for (int i = k-1; i >= 0; --i) {
if (y[i]) need += x;
long long use = min(need, a[i]);
need -= use;
need <<= 1;
}
return !need;
};
bitset<MX> y = 0;
long long ans = 1;
bool foundNext = true;
while (foundNext) {
foundNext = false;
// find next highest y-value that works
for (int i = 0; i < k; ++i) {
if (y[i]) continue;
// change a 0 into a 1, and set all smaller bits to 0
bitset<MX> z = y;
z[i] = 1;
for (int j = i-1; j >= 0; --j) z[j] = 0;
if (possible(z)) {
++ans, y = z;
foundNext = true;
break;
}
}
}
return 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... |