이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<int> find_subset(int l, int u, vector<int> w) {
ll n = w.size();
ll i=0,j=0,s=0;
// i - next to be removed
// j - next to be added
bool movement=true;
while(movement)
{
movement = false;
while(j<n&&s<l) s+=w[j++], movement=1;
while(i<j&&s>u) s-=w[i++], movement=1;
}
if(s>=l&&s<=u)
{
vector<int> res;
for(ll k=i;k<j;k++) res.push_back(k+1);
return res;
}
return vector<int>(0);
}
# | 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... |