# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
823900 | drdilyor | 비스킷 담기 (IOI20_biscuits) | C++17 | 1 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "biscuits.h"
using namespace std;
using ll = long long;
const int T = 120;
long long count_tastiness(long long x, std::vector<long long> a) {
assert(x == 1);
int k = a.size();
a.resize(T+1);
ll cur = 0;
for (int i = 0; i <= T; i++) {
if (a[i] > 1) {
ll d = (a[i] - 1) / 2;
a[i] -= d;
a[i+1] += d;
}
}
// for (ll i : a) cout << i << ' '; cout << endl;
vector<array<ll, 2>> ans(T+2);
ans[0] = {1, 0};
for (int i = 0; i <= T; i++) {
if (a[i]) {
ans[i+1][0] = ans[i][0] + ans[i][1];
ans[i+1][1] = ans[i][0] + ans[i][1];
} else {
ans[i+1][0] = ans[i][0] + ans[i][1];
ans[i+1][1] = 0;
for (int j = i-1; j >= 0; j--) {
if (a[j] == 0) break;
if (a[j] == 2) {
ans[i+1][1] += ans[j + 1][0];
}
}
}
}
// for (ll i : ans) cout << i << ' '; cout << endl;
return ans[T+1][0] + ans[T+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... |