# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
304065 | 2qbingxuan | 비스킷 담기 (IOI20_biscuits) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#ifdef local
#define safe std::cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#define debug(...) qqbx(#__VA_ARGS__, __VA_ARGS__)
template <typename H, typename ...T> void qqbx(const char*s, const H &h, T ...args) {
for(; *s && *s != ','; ++s) if(*s != ' ') std::cerr << *s;
std::cerr << " = " << h << (sizeof...(T) ? ", " : "\n");
if constexpr (sizeof...(T)) qqbx(++s, args...);
}
#else
#define debug(...) ((void)0)
#define safe ((void)0)
#endif // local
#define pb emplace_back
using namespace std;
typedef long long ll;
const int N = 2500025;
bool check(ll y, ll x, vector<ll> a) {
ll sum = 0;
for(int i = 0; i < k; i++) {
sum += a[i];
if(sum < x * (y & ((1<<i+1)-1)) return false;
}
return true;
}
ll count_tastiness(ll x, vector<ll> a) {
int k = a.size();
ll sum = 0;
for(int i = 0; i < k; i++) sum += a[i];
ll ans = 0;
for(int y = 0; y <= sum / x; y++) {
if(check(y, x, a)) ++ans;
}
return ans;
}