# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
416674 | schse | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
#define int long long
//#include "molecules grader.cpp"
using namespace std;
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
signed n= w.size();
vector<pair<int, int>> arr;
vector<int> prefarr(n + 1),result;
for (int i = 0; i < n; i++)
{
arr.push_back({w[i], i});
}
sort(arr.begin(), arr.end());
prefarr[0] = 0;
for (int i = 0; i < n; i++)
prefarr[i + 1] = prefarr[i] + arr[i].first;
int a = 0, b = 0,tmp;
bool change=true;
while (change)
{
change=false;
while (l > prefarr[b] - prefarr[a]&&b!=arr.size())
b++,
change=true;
while (u < prefarr[b] - prefarr[a]&&a<b)
a++,
change=true;
if (l <= prefarr[b] - prefarr[a] && prefarr[b] - prefarr[a] <= u)
{
for (int i = a; i < b; i++)
result.push_back(arr[i].second);
return result;
}
}
return std::vector<int>(0);
}