이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
#define F first
#define S second
#define V vector
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(), (v).end()
using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef V<int> vi;
const int INF = 1e9 + 7;
vi find_subset(int l, int r, vi w) {
int n = SZ(w);
vi p(n); iota(ALL(p), 0);
sort(ALL(p), [&] (int x, int y) {
return w[x] < w[y];
});
V<ll> s(n + 1);
for(int i = 1; i <= n; i++)
s[i] = s[i - 1] + w[p[i - 1]];
for(int len = 1; len <= n; len++) {
ll x = s[len], y = s[n] - s[n - len];
if(y < l || x > r) continue;
for(int i = 1; i + len - 1 <= n; i++) {
if(l <= s[i + len - 1] - s[i - 1] && s[i + len - 1] - s[i - 1] <= r) {
vi ans;
for(int j = i; j <= i + len - 1; j++)
ans.PB(p[j - 1]);
return ans;
}
}
}
return {};
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |