# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
425635 | idk321 | 비스킷 담기 (IOI20_biscuits) | C++17 | 224 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>;
using namespace std;
typedef long long ll;
long long count_tastiness(long long x, std::vector<long long> a) {
ll sum = 0;
int k = 60;
for (int i = 0; i < a.size(); i++)
{
sum += (1LL << i) * a[i];
}
if (sum <= 100000)
{
int res = 0;
for (int i = 0; i <= sum; i++)
{
bool poss = true;
vector<ll> cur(60);
for (int j = 0; j < a.size(); j++) cur[j] = a[j];
for (int j = 0; j < k; j++)
{
if ((1LL << j) & i)
{
cur[j] -= x;
if (cur[j] < 0)
{
poss = false;
break;
}
}
if (j + 1 < k)
{
cur[j + 1] += cur[j] / 2;
}
}
if (poss) res++;
}
return res;
}
if (x == 1)
{
vector<ll> cur(k);
for (int j = 0; j < a.size(); j++) cur[j] = a[j];
int prev = -1;
vector<vector<int>> ivals;
for (int i = 0; i < k; i++)
{
if (cur[i] == 0 && prev != -1)
{
vector<int> ival;
for (int j = prev; j <= i - 1; j++) ival.push_back(cur[j]);
ivals.push_back(ival);
prev = -1;
}
if (cur[i] != 0 && prev == -1)
{
prev = i;
}
}
if (prev != -1)
{
vector<int> ival;
for (int j = prev; j < k; j++) ival.push_back(cur[j]);
ivals.push_back(ival);
prev = -1;
}
ll res = 1;
for (auto ival : ivals)
{
ll csum = 1;
for (int i = 0; i < ival.size(); i++)
{
csum += (1LL << i) * ival[i];
}
res *= csum;
}
return res;
}
return 0;
}
/*
1
15 1
1 2 0 2 1 0 0 2 2 1 1 2 0 0 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... |