# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
781520 | _martynas | 비스킷 담기 (IOI20_biscuits) | C++14 | 7 ms | 1108 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <set>
#include <iostream>
#include <assert.h>
#include <algorithm>
#include <numeric>
using namespace std;
using ll = long long;
#warning change mxk to 60
const int mxk = 60;
ll count_tastiness(ll x, vector<ll> a) {
vector<ll> dp(mxk+1); // dp[i] - ways to use first i bits
dp[0] = 1;
a.resize(mxk, 0);
vector<ll> pref(mxk);
for(int i = 0; i < mxk; i++) {
pref[i] = (i ? pref[i-1] : 0) + (1LL<<i)*a[i];
}
// for(int y : a) cerr << y << " ";
// cerr << "\n";
for(int i = 1; i <= mxk; i++) {
// i-th bit is 0
dp[i] = dp[i-1];
// i-th bit is 1
if(a[i-1] >= x) {
dp[i] += dp[i-1];
}
else {
ll mx = 1LL << (i-1);
// x*mx can overflow
if(1.0*x*mx > 1.5e18) continue;
mx = pref[i-1]-x*mx;
if(mx >= x*(1LL << (i-1))) {
dp[i] += dp[i-1];
}
else if(mx >= 0) {
dp[i]++;
mx /= x;
for(int b = 0; b < i-1; b++) {
if(mx & (1LL << b)) {
dp[i] += dp[b];
}
}
}
}
}
// for(auto y : dp) cerr << y << " ";
// cerr << "\n";
return dp[mxk];
}
컴파일 시 표준 에러 (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... |