# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
944497 | rainboy | 앱 (KOI13_app) | C11 | 2 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <string.h>
#define N 100
#define C 100
#define S (N * C)
int max(int a, int b) { return a > b ? a : b; }
int main() {
static int ww[N], cc[N], dp[S + 1];
int n, m, i, s;
scanf("%d%d", &n, &m);
for (i = 0; i < n; i++)
scanf("%d", &ww[i]);
for (i = 0; i < n; i++)
scanf("%d", &cc[i]);
memset(dp, -1, (S + 1) * sizeof *dp), dp[0] = 0;
for (i = 0; i < n; i++)
for (s = S; s >= 0; s--)
if (dp[s] != -1)
dp[s + cc[i]] = max(dp[s + cc[i]], dp[s] + ww[i]);
s = 0;
while (dp[s] < m)
s++;
printf("%d\n", s);
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |