# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
377922 | Thistle | 비스킷 담기 (IOI20_biscuits) | C++14 | 2 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <vector>
#include<iostream>
#include<algorithm>
#include<unordered_map>
using namespace std;
using ll=long long;
using H=pair<ll, ll>;
using vi=vector<ll>;
#define rng(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
#define rep(i,n) rng((i),(0),(n))
#define pb push_back
#define vec vector
#define all(a) (a).begin(),(a).end()
#define fs first
#define sc second
#define siz(a) ll((a).size())
long long count_tastiness(long long x, std::vector<long long> a) {
ll k=siz(a);
unordered_map<ll, ll>mp[2];
//remain cookie -> able number
mp[0][0]=1;
rep(i,k){
auto& now=mp[i&1];
auto& nxt=mp[(i+1)&1];
nxt.clear();
for(auto g:now){
ll t=g.fs;
t+=a[i];
if(t>=x) nxt[(t-x)>>1]+=g.sc;
nxt[t>>1]+=g.sc;
}
}
ll ans=0;
for(auto g:mp[k&1]){
ans+=g.sc;
}
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... |