# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
544746 | rainboy | Kitchen (BOI19_kitchen) | C11 | 28 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <string.h>
#define N 300
#define M 300
#define K 300
#define B 300
#define S (M * B)
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }
int main() {
static int dp[S + 1];
int n, m, k, i, s, s_;
scanf("%d%d%d", &n, &m, &k);
if (m < k) {
printf("Impossible\n");
return 0;
}
s_ = 0;
for (i = 0; i < n; i++) {
int a;
scanf("%d", &a);
if (a < k) {
printf("Impossible\n");
return 0;
}
s_ += a;
}
memset(dp, -1, sizeof dp), dp[0] = 0;
while (m--) {
int b;
scanf("%d", &b);
for (s = S; s >= b; s--)
if (dp[s - b] != -1)
dp[s] = max(dp[s], dp[s - b] + min(b, n));
}
for (s = s_; s <= S; s++)
if (dp[s] >= n * k) {
printf("%d\n", s - s_);
return 0;
}
printf("Impossible\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... |