# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
928767 | UmairAhmadMirza | Kitchen (BOI19_kitchen) | C++14 | 29 ms | 3164 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int const N=42;
int const inf=1e9;
bool dp[N*N][N*N];
int n,m,k;
int main(){
cin>>n>>m>>k;
int arr[n];
int total=0;
for(int i=0;i<n;i++){
cin>>arr[i];
total+=arr[i];
if(arr[i]<k){
cout<<"Impossible"<<endl;
return 0;
}
}
int chef[m];
for(int i=0;i<m;i++)
cin>>chef[i];
dp[0][0]=1;
for(int i=0;i<m;i++)
for(int tot=(N*m);tot>=chef[i];tot--)
for(int uni=min(chef[i],n);uni<=tot;uni++)
dp[tot][uni]|=dp[tot-chef[i]][uni-min(chef[i],n)];
for(int tot=total;tot<=(N*m);tot++)
for(int uni=(k*n);uni<=tot;uni++)
if(dp[tot][uni]){
cout<<tot-total<<endl;
# | 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... |