# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
773814 | t6twotwo | 비스킷 담기 (IOI20_biscuits) | C++17 | 1068 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll count_tastiness(ll q, vector<ll> A) {
A.resize(61);
if (q == 1) {
map<ll, ll> mp;
mp[0] = 1;
for (int i = 0; i < A.size(); i++) {
map<ll, ll> t;
for (auto [add, x] : mp) {
t[(A[i] + add) / 2] += x;
if (A[i] + add >= q) {
t[(A[i] + add - q) / 2] += x;
}
}
swap(mp, t);
}
ll ans = 0;
for (auto [_, x] : mp) {
ans += x;
}
return ans;
}
int ans = 0;
for (ll i = 0; i <= 100000; i++) {
auto B = A;
ans++;
for (int j = 0; j < 60; j++) {
if (i >> j & 1) {
if (B[j] < q) {
ans--;
break;
}
B[j] -= q;
}
B[j + 1] += B[j] / 2;
}
}
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... |