이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"
#define INF 1000000000
#define LINF 1000000000000000LL
#define pb push_back
#define all(x) x.begin(), x.end()
#define len(s) (int)s.size()
#define test_case { int t; cin>>t; while(t--)solve(); }
#define single_case solve();
#define line cerr<<"----------"<<endl;
#define ios { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cerr.tie(NULL); }
#define mod 1000000007LL
const int N = 2e5 + 5;
pair<int, int> a[N];
vector<int> find_subset(int l, int u, vector<int> w)
{
vector<int> res;
int ind = 0;
for(int x : w)
{
a[ind].first = x;
a[ind].second = ind;
ind++;
}
int n = len(w);
sort(a, a+n);
for(int i = 0;i<n;i++)
{
if(a[i].first>=l&&a[i].first<=u)
{
res.pb(a[i].second);
return res;
}
}
for(int i = 0;i<n-1;i++)
{
if(a[i].first+a[n-1].first>=l&&a[i].first+a[n-1].first<=u)
{
res.pb(a[i].second);
res.pb(a[n-1].second);
return res;
}
}
return res;
}
# | 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... |