# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
412391 | achibasadzishvili | 비스킷 담기 (IOI20_biscuits) | C++17 | 7 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include<bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pb push_back
using namespace std;
ll pre[505],n;
map<ll,pair<ll,ll> >got;
ll solve(ll k){
if(k <= 0)return 0;
if(got[k].f)return got[k].s;
ll ret = 0;
ll pw = 1,t = 0;
while(2 * pw < k){
t++;
pw *= 2;
}
ret = solve(pw) + solve(min(k ,1 + pre[t] / n) - pw);
got[k] = {1 , ret};
//cout << k << " " << ret << '\n';
return ret;
}
ll count_tastiness(ll x, vector<ll> a){
got.clear();
for(int i=0; i<=200; i++)
pre[i] = 0;
for(int i=0; i<a.size(); i++){
if(!i)pre[i] = a[i] * (1LL << i);
else pre[i] = pre[i - 1] + a[i] * (1LL << i);
}
n = x;
got[1] = {1 , 1};
return solve(pre[(int)a.size() - 1] + 1);
}
컴파일 시 표준 에러 (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... |