# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
567414 | birthdaycake | Kitchen (BOI19_kitchen) | C++17 | 20 ms | 1052 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
#define mod 1000000007
#define boost ios_base::sync_with_stdio(false), cin.tie(NULL);
using namespace std;
int dp[200001],a[20001],b[200001];
signed main(){
boost;
int n,m,k,sum = 0; cin >> n >> m >> k;
for(int i = 0; i < n; i++){
cin >> a[i]; sum += a[i];
}
if(k == 1){
for(int j = 0; j < m; j++) cin >> b[j];
dp[0] = 1;
for(int i = 0; i < m; i++){
for(int j = 90000; j >= b[i]; j--){
dp[j] += dp[j - b[i]];
}
}
for(int i = sum; i <= 90000; i++){
if(dp[i]){
cout << i - sum;
return 0;
}
}
cout << "Impossible";
return 0;
}
for(int j = 0; j < m; j++) cin >> b[j];
if(m < k){
cout << "Impossible";
return 0;
}
for(int i = 0; i < n; i++){
if(a[i] < k){
cout << "Impossible";
return 0;
}
}
int ans = 1e18;
for(int i = 0; i < (1 << m); i++){
int tot = 0, good = 1, xx = 0;
for(int j = 0; j < m; j++){
if(i & (1 << j)){
xx += min(b[j],n);
tot += b[j];
}
}
if(xx == n * k){
if(tot >= sum) ans = min(ans,tot - sum);
}
}
if(ans == 1e18){
cout << "Impossible";
return 0;
}
cout << ans;
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... |