#include<iostream>
#include<algorithm>
using namespace std;
int n, m, k;
const int maxn = 301;
const int inf = maxn * maxn + 400;
int a[maxn];
int az = 0;
int b[maxn];
int dp[maxn][inf];
int sol = inf;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m >> k;
int r = 0, az = 0;
for (int i = 0; i < n; i++){
cin >> a[i];
az += a[i];
if (a[i] < k){
r = 1;
}
}
for (int i = 0; i < m; i++){
cin >> b[i];
}
for (int i = m - 1; i >= 0; i--){
for (int j = maxn * maxn; j >= 0; j--){
dp[i][j] = dp[i + 1][j];
dp[i][j + b[i]] = max(dp[i][j + b[i]], dp[i + 1][j] + min(n, b[i]));
}
}
for (int j = maxn * maxn; j >= 0; j--){
if (dp[0][j] >= k * n && j >= az){
sol = min(sol, j);
}
}
if (r == 0 && sol != inf){
cout << sol - az;
}
else {
cout << "Impossible";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
1004 KB |
Output is correct |
2 |
Incorrect |
3 ms |
1004 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
1004 KB |
Output is correct |
2 |
Incorrect |
3 ms |
1004 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
82 ms |
93292 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
14572 KB |
Output is correct |
2 |
Correct |
14 ms |
14572 KB |
Output is correct |
3 |
Correct |
14 ms |
14572 KB |
Output is correct |
4 |
Correct |
14 ms |
14572 KB |
Output is correct |
5 |
Correct |
14 ms |
14572 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
1004 KB |
Output is correct |
2 |
Incorrect |
3 ms |
1004 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |