이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define ll long long
const ll MAX=5e5+10, L=16;
const ll MAXV=1e18+10;
struct st{
ll i, s, q;
}t[MAX];
ll n, w;
int minipos;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
cin>>n>>w;
for(ll i=1; i<=n; i++){
cin>>t[i].s>>t[i].q;
t[i].i=i;
}
sort(t+1, t+n+1, [](st a, st b){
ll la=a.s/__gcd(a.s, a.q), ma=a.q/__gcd(a.s, a.q);
ll lb=b.s/__gcd(b.s, b.q), mb=b.q/__gcd(b.s, b.q);
ll nla=la*mb, nlb=lb*ma;
return nla<nlb;
});
ll sum=0;
multiset<ll>m;
long double mini=MAXV;
int maxi=0;
bool udalo=false;
for(ll i=1; i<=n; i++){
m.insert(t[i].q), sum+=t[i].q;
while(sum*t[i].s>w*t[i].q){
auto it=m.end();
it--;
sum-=*it;
m.erase(it);
}
if(w*t[i].q>=sum*t[i].s){
maxi=max(maxi, int(m.size()));
if(mini>(long double)sum*t[i].s/(long double)t[i].q)
mini=(long double)sum*t[i].s/(long double)t[i].q, minipos=i;
}
}
cout<<maxi<<"\n";
for(int i=1; i<=maxi; i++)
cout<<i<<"\n";
return 0;
/* multiset<pair<int,int>>m;
for(int i=1; i<=minipos; i++)
m.insert({t[i].q, t[i].i});
int ile=0;
for(multiset<pair<int,int>>::iterator it=m.begin(); true; it++){
cout<<(*it).se<<"\n";
ile++;
if(ile==x)
break;
}*/
}
컴파일 시 표준 에러 (stderr) 메시지
hiring.cpp: In function 'int main()':
hiring.cpp:32:10: warning: unused variable 'udalo' [-Wunused-variable]
32 | bool udalo=false;
| ^~~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |