# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
732956 | PoonYaPat | 비스킷 담기 (IOI20_biscuits) | C++14 | 16 ms | 824 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll qs[61],sum,bag;
ll find(ll x) {
if (x<0) return 0;
if (x==0) return 1;
if (x==1) return qs[0];
int k=-1;
for (int i=59; i>0; --i) {
if ((1ll<<i)<=x) {
k=i;
break;
}
}
assert(k!=-1);
return qs[k-1]+find(min(x-(1ll<<k),(sum/bag)-(1ll<<k)));
}
ll count_tastiness(ll X, vector<ll> a) {
bag=X;
sum=a[0];
if (a[0]>=bag) qs[0]=2;
else qs[0]=1;
for (int i=1; i<60; ++i) {
if (i<a.size()) sum+=a[i]*(1ll<<i);
qs[i]=find((1ll<<(i+1))-1);
}
return qs[59];
}
컴파일 시 표준 에러 (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... |