#include <bits/stdc++.h>
using namespace std;
const int N = 505;
const int S = 1e5 + 10;
int n, a[N];
vector<int> dp[S], possible;
bool mark[S], poss[S];
int main(){
cin >> n;
int total = 0;
for (int i = 0; i < n; i ++)
cin >> a[i], total += a[i];
dp[0] = {-1};
for (int i = 0; i < n; i ++){
for (int sm = total; sm >= a[i]; sm--){
if (dp[sm - a[i]].size() == 0 or dp[sm].size()) continue;
dp[sm] = dp[sm - a[i]];
dp[sm].push_back(i);
possible.push_back(sm);
}
}
sort(possible.begin(), possible.end());
reverse(possible.begin(), possible.end());
int ite = 0;
int mx = -1;
for (int X : possible){
if (ite >= 1.8e8) break;
if (X > (total / 2)) continue;
// cout << "Starting to check " << X << endl;
for (int i : dp[X]){
// cout << "marking index = " << i << endl;
ite++;
if (~i) mark[i] = 1;
}
poss[0] = 1;
for (int i = 0; i < n; i ++){
if (mark[i]){
mark[i] = 0;
ite++;
continue;
}
for (int sm : possible){
if (sm > X) continue;
ite++;
poss[sm] |= poss[sm - a[i]];
}
}
if (poss[X]){
mx = X;
break;
}
for (int sm : possible){
ite++;
poss[sm] = 0;
}
}
if (~mx){
cout << total - mx << endl;
return 0;
}
for (int x = 0; 2 * x < S; x ++)
if (dp[x].size() and dp[2 * x].size())
mx = max(mx, x);
cout << mx + (total - 2 * mx) << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2908 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
38 ms |
32188 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
44 ms |
24404 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
205 ms |
254720 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |