# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
579951 | Vanilla | 비스킷 담기 (IOI20_biscuits) | C++17 | 1085 ms | 780 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
typedef long long int64;
bool check (int64 tg, int64 x, vector <int64> a) {
vector <int64> b(x, 0);
int64 n = a.size();
int64 curr = tg;
for (int64 i = n - 1; i >= 0; i--){
for (int z = 0; z < 100; z++){
int j = 0;
while (j < x && a[i]) {
if (b[j] + (1 << i) <= tg) {
b[j]+=(1 << i);
a[i]--;
}
j++;
}
}
}
for (int i = 0; i < x; i++){
if (b[i] != tg) return 0;
}
return 1;
}
int64 count_tastiness(int64 x, vector<int64> a) {
if (x > 100000) return 0;
int64 rs = 1;
for (int i = 1; i <= 500; i++){
if (check(i, x, a)) rs++;
}
return rs;
}
컴파일 시 표준 에러 (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... |