# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
783914 | 2023-07-15T12:18:12 Z | TheOpChicken | Kitchen (BOI19_kitchen) | C++17 | 40 ms | 844 KB |
#include <iostream> using namespace std; const int maxN = 350; int dp[maxN*maxN], barr[maxN]; int main(){ int n, m, k; cin >> n >> m >> k; bool pos = 1; int t1 = 0, t2 = 0; for (int i = 0; i < n; i++){ int a; cin >> a; if (a < k) pos = 0; t2 += a; } for (int i = 0; i < m; i++){ cin >> barr[i]; t2 += barr[i]; } if (!pos){ cout << "Impossible" << endl; return 0; } for (int i = 1; i <= t2; i++) dp[i] = -1e15; dp[barr[0]] = min(barr[0], n); for (int i = 1; i < m; i++){ for (int j = 0; j <= t2; j++){ if (barr[i] <= j) dp[j] = max(dp[j], dp[j-barr[i]] + min(barr[i], n)); } } for (int i = t1; i <= t2; i++){ if (dp[i] >= n*k){ cout << i-t1 << endl; return 0; } } cout << "Impossible" << endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 40 ms | 844 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |