이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pii> vpi;
typedef vector<pll> vpl;
#define pb push_back
#define popb pop_back
#define all(x) (x).begin(),(x).end()
int k;
vll A;
ll x;
ll count_tastiness(ll X, vll a)
{
A = a;
x = X;
k = A.size();
ll ans = 1ll;
for(ll y = 1; y <= 1e5; y ++)
{
vll B = A;
bool flag = true;
for(int i = 0; i < x; i ++)
{
ll cur= y;
for(int j = k - 1; j >= 0; j --)
{
while(cur >= (1 << j) && B[j] > 0)
{
cur -= (1 << j);
B[j]--;
}
}
if(cur > 0)
{
flag = false;
break;
}
}
ans += (flag);
}
return ans;
}
/*
int32_t main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
}
*/
# | 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... |