# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
405860 | ly20 | 비스킷 담기 (IOI20_biscuits) | C++17 | 1094 ms | 123456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 63;
long long mc[MAXN];
bool inf(long long a, long long b) {
if(log10(a) + log10(b) > 18) return true;
return false;
}
long long count_tastiness(long long x, vector<long long> a) {
int tot = 0;
for(int i = 0; i < a.size(); i++) {
mc[i] = a[i];
}
for(int i = a.size(); i < MAXN; i++) mc[i] = 0;
set <long long> s;
long long cur = 0;
s.insert(0);
for(int i = 0; i < MAXN; i++) {
int at = mc[i] * (1LL << i);
cur += at;
if(inf(x, (1LL << i))) continue;
long long nec = x * (1LL << i);
set <long long> :: iterator it = s.lower_bound(nec - cur);
vector <long long> rs;
while(it != s.end()) {
rs.push_back(*it);
it++;
}
for(int j = 0; j < rs.size(); j++) {
s.insert(rs[j] - nec);
}
}
return s.size();
}
/*
int main() {
int t;
scanf("%d", &t);
while(t--) {
long long x;
int k;
vector <long long> a;
scanf("%d %lld", &k, &x);
for(int i = 0; i < k; i++) {
long long b;
scanf("%lld", &b);
a.push_back(b);
}
printf("resp == %lld\n", count_tastiness(x, a));
}
return 0;
}
*/
컴파일 시 표준 에러 (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... |