이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "molecules.h"
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<int> find_subset(int L, int u, vector<int> k) {
int n = (int)k.size();
vector<pair<int,int>>w(n);
for (int i = 0; i < n; i++){
w[i] = {k[i], i};
}
for (int i = 0; i < 100000; i++){
shuffle(w.begin(),w.end(),rng);
int l = 0, r = 0;
long long s = 0;
while(r < n){
s += w[r].first;
while(s > u){
s -= w[l].first;
++l;
}
if (s >= L && s <= u){
vector<int>ans;
while(l<=r){
ans.push_back(w[l].second);
++l;
}
return ans;
}
++r;
}
}
return std::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... |