# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1083117 | beaconmc | 비스킷 담기 (IOI20_biscuits) | C++14 | 1018 ms | 432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
using namespace std;
vector<ll> A(18);
ll X;
// unordered_map<ll,ll> dps;
// ll hashs(ll a, ll b){
// return b*18 + a;
// }
// ll cnt = 0;
// ll dp(ll pos, ll add){
// cnt++;
// if (dps.count(hashs(pos, add))) return dps[hashs(pos, add)];
// if (pos>=A.size()) return 1;
// ll temp = 0;
// if (add==0){
// ll cur = 0;
// while (cur <= X && cur <= A[pos]){
// temp += dp(pos+1, (A[pos]-cur)/2);
// cur += X;
// }
// }else{
// ll idk = (A[pos] + add);
// ll cur = 0;
// while (cur <= X && cur <= idk){
// temp += dp(pos+1, (idk-cur)/2);
// cur += X;
// }
// }
// dps[hashs(pos, add)] = temp;
// return temp;
// }
long long count_tastiness(long long x, std::vector<long long> a) {
X = x;
FOR(i,0,18) A[i] = 0;
// dps.clear();
// dps.reserve(1<<19);
FOR(i,0,a.size()) A[i] = a[i];
ll ans = 0;
FOR(cnt,0,200001){
ll carry = 0;
bool flag = false;
FOR(i,0,18){
carry += A[i];
if (cnt & (1<<i)){
if (carry < x){
flag = true;
break;
}
carry -= x;
}
carry /= 2;
}
if (!flag) ans++;
}
return ans;
}
컴파일 시 표준 에러 (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... |