#include <bits/stdc++.h>
using namespace std;
vector<int> find_subset(int l, int u, vector<int> w)
{
const size_t n = w.size();
sort(w.begin(), w.end());
int a = w[0];
for(auto& x : w)
x -= a;
vector<int64_t> s(n + 1), z(n + 1);
for(size_t i = 0; i < n; i++)
s[i+1] = s[i] + w[i], z[i+1] = z[i] + w[n-i-1];
vector<int> result;
for(size_t k = 1; result.empty() and k <= n; k++)
{
for(size_t i = 0; i <= k; i++)
{
auto c = (int64_t)k * a + s[i] + z[k-i];
if(l <= c and c <= u)
{
result.reserve(k);
copy(w.begin(), w.begin() + i, back_inserter(result));
copy(w.end() - (k-i), w.end(), back_inserter(result));
}
}
}
for(auto& x : result)
x += a;
return result;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
4 ms |
256 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
5 ms |
384 KB |
Integer 2 violates the range [0, 1] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
256 KB |
Integer 18 violates the range [0, 12] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
4 ms |
256 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
5 ms |
384 KB |
Integer 2 violates the range [0, 1] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
4 ms |
256 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
5 ms |
384 KB |
Integer 2 violates the range [0, 1] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
4 ms |
256 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
5 ms |
384 KB |
Integer 2 violates the range [0, 1] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
4 ms |
256 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
5 ms |
384 KB |
Integer 2 violates the range [0, 1] |
4 |
Halted |
0 ms |
0 KB |
- |