比赛 |
202103省实验桐柏一中普及组联赛 |
评测结果 |
WWWWWWWWWW |
题目名称 |
自助者天助 |
最终得分 |
0 |
用户昵称 |
ムラサメ |
运行时间 |
0.089 s |
代码语言 |
C++ |
内存使用 |
1.40 MiB |
提交时间 |
2021-03-22 20:17:18 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m;
int w[30001],v[30001];
int flag,ans=0;
int main(){
freopen("delicious.in","r",stdin);
freopen("delicious.out","w",stdout);
cin>>n>>m;
flag=m;
for(int i=0;i<n;i++){
cin>>w[i]>>v[i];
}
for(int i=0;i<n;i++){
int temp1=v[0],temp2=0;
for(int j=0;j<n;j++){
if(v[j]>temp1){
temp1=v[j];
temp2=j;
}
}
if(flag-w[temp2]>=0){
flag=flag-w[temp2];
ans=ans+temp1;
}
else{
cout<<ans<<endl;
return 0;
}
}
return 0;
}