| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 567157 | almothana05 | Kitchen (BOI19_kitchen) | C++14 | 179 ms | 188160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define mod 1000000007
#define inf 100000000000000000
using namespace std;
vector<int>num, chef , pow2;
pair<int ,int>mask[40000];
int sub[400][300 * 400];
void im(){
cout << "Impossible\n";
}
string bi(int x){
string cmp;
while(x){
if(x % 2 == 0){
cmp += '0';
}
else{
cmp += '1';
}
x /= 2;
}
return cmp;
}
int main(){
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
for(int i = 1; i < 1000000 ; i *= 2){
pow2.push_back(i);
}
int menge, numm , nummer , koch , mini , re = 0 , rechner = 0;
cin >> menge >> koch >> mini;
if(koch < mini){
im();
return 0;
}
for(int i = 0 ; i < menge ; i++){
cin >> numm;
re += numm;
num.push_back(numm);
if(numm < mini){
im();
return 0;
}
}
for(int i = 0 ; i < koch ; i++){
cin >> numm;
rechner += numm;
chef.push_back(numm);
}
///////////////////////////////////////////////////////////////////////////////////////////
for(int i = 0 ; i < 400 ; i++){
for(int j = 0 ; j < 400 * 300 ; j++){
sub[i][j] = mod;
}
}
sub[0][0] = menge * mini;
for(int i = 0 ; i < koch ; i++){
for(int j = 0 ; j <= i * 300 ; j++){
if(sub[i][j] != mod){
sub[i + 1][j] = min(sub[i + 1][j] ,sub[i][j]);
sub[i + 1][j + chef[i]] = min(sub[i + 1][j + chef[i]] ,sub[i][j] - min(menge , chef[i])) ;
// cout << "ja\n";
}
}
// cout << "\n";
}
int erg = -1;
for(int i = re ; i <= rechner ; i++){
// cout << i << ' ';
if(sub[koch][i] <= 0){
// cout << "ja\n";
erg = i - re ;
break;
}
}
if(erg == -1){
im();
return 0;
}
else{
cout << erg << "\n";
}
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... | ||||
