# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433022 | lior5654 | 비스킷 담기 (IOI20_biscuits) | C++17 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pl;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<pl> vpl;
typedef vector<vpl> vvpl;
typedef pair<int, int> pi;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pi> vpi;
typedef vector<vpi> vvpi;
#define rep(i, n) for(int i = 0; i < n; ++i)
#define all(c) (c.begin()), (c.end())
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
const int maxk = 61;
ll x; ll k; ll a[maxk] = { 0 };
void init_input(ll X, const vl& A) {
x = X; k = A.size(); rep(i, k) {a[i] = A[i];}
}
ll count_tastiness(ll X, vl A) {
init_input(X, A);
ll res = 1;
ll num_blocks = (a[0]+x-1)/x + 1;
ll block_val = 1;
ll dist = 1;
ll mx = num_blocks - 1;
for(ll i = 1; i < k; ++i) {
//if(!a[i]) continue;
if(mx < (1ll<<i)) {
block_val = num_blocks * block_val;
num_blocks = (a[i]+x-1)/x+1;
dist = 1ll<<i;
} else {
num_blocks += (((a[i]+x-1)/x) * ((1ll<<i) / dist));
}
mx += ((a[i]+x-1)/x) * (1ll<<i);
}
return num_blocks * block_val;
}
컴파일 시 표준 에러 (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... |