#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, k;
cin >> n >> m >> k;
vector<int>a(n), b(m);
int sum = 0;
for(int i = 0; i < n; i++){
cin >> a[i];
sum += a[i];
}
vector<int> dp(90001, -1);
dp[0] = -2;
for(int i = 0; i < m; i++){
cin >> b[i];
for(int j = b[i]; j <= 90000; j++){
if(dp[j - b[i]] != -1 && dp[j - b[i]] != i && dp[j] == -1){
dp[j] = i;
}
}
}
int mn = INT_MAX;
for(int i = sum; i <= 90000; i++){
if(dp[i] > 0){
mn = min(mn, abs(sum - i));
}
}
cout << mn << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
596 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
596 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
648 KB |
Output is correct |
2 |
Correct |
18 ms |
596 KB |
Output is correct |
3 |
Correct |
47 ms |
596 KB |
Output is correct |
4 |
Correct |
28 ms |
596 KB |
Output is correct |
5 |
Incorrect |
35 ms |
596 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
596 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
596 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |