이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define mxn 100005
#define mxm 105
#define f first
#define s second
#define pb push_back
#define es " "
#define endl '\n'
#define INF 0x3f3f3f3f
#define INFL 0x3f3f3f3f3f3f3f3f
#define ll long long
#define fastio ios_base::sync_with_stdio(0), cin.tie(0)
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
typedef pair<int, int> pii;
typedef pair<int, pii> pip;
vector<int> find_subset(int l, int u, vector<int> w){
vector<int> resp;
sort(all(w));
multiset<pii> sla;
int le=0, r=0, n=sz(w);
ll soma=0;
while(1){
if(soma>=l && soma<=u){
for(pii i:sla){
resp.pb(i.s);
}
return resp;
}
while(r<n && soma<l){
soma+=w[r];
sla.insert({w[r], r});
r++;
}
while(le<n && soma>u){
sla.erase(sla.find({w[le], le}));
soma-=w[le];
le++;
}
}
return {};
}
// int main(){
// fastio;
// return 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... |