| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76786 | sh25_shenpy | 淘气的小明摘椰子 | C++ | Accepted | 0 MS | 252 KB | 462 | 2025-12-19 19:06:38 |
#include <bits/stdc++.h> #include<algorithm> #include<functional> using namespace std; int s[1011]; int main() { int n,h,m,d=0,k=0,w=0; cin>>h; cin>>n; for(int i=0;i<n;++i){ cin>>s[i]; } sort(s,s+n,greater<int>()); for(int x:s) { d+=x; k++; if(d+160>=h){ cout<<k; break;}} for(int y=0;y<n;++y){ w+=s[y];} if(w+160<h) cout<<"-1"; return 0; }