# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1074555 | TheQuantiX | 비스킷 담기 (IOI20_biscuits) | C++17 | 1067 ms | 444 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
using ll = long long;
ll n, m, q, k, x, y, a, b, c;
long long count_tastiness(long long x, vector<long long> a) {
ll sum = 0;
for (int i = 0; i < a.size(); i++) {
sum += a[i] * (1 << i);
}
if (x == 1) {
ll ans = 1;
ll mx = 0;
ll last = 1;
ll e = 1;
for (int i = 0; i < a.size(); i++) {
if (mx < (1LL << i) - 1) {
ans += mx / last;
e *= (mx / last + 1);
mx = 0;
last = (1LL << i);
}
mx += a[i] * (1LL << i) * e;
}
ans += mx / last;
return ans;
// cout << ans << '\n';
}
ll ans = 1;
for (int i = 1; i <= sum / x; i++) {
vector<ll> arr = a;
bool fl = 1;
for (int j = 0; j < x; j++) {
ll e = i;
for (int k = arr.size() - 1; k >= 0; k--) {
ll x = min(e / (1LL << k), arr[k]);
arr[k] -= x;
e -= (1LL << k) * x;
}
if (e != 0) {
fl = 0;
break;
}
}
if (fl) {
// cout << i << '\n';
ans++;
}
}
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... |