| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76669 | sh25_shenpy | 淘气的小明摘椰子 | C++ | 运行出错 | 0 MS | 236 KB | 438 | 2025-12-19 15:43:35 |
#include <bits/stdc++.h> #include<algorithm> #include<functional> using namespace std; int n; int main() { int s[n]; int h,m,d=0,k=0; cin>>h; cin>>n; for(int i=0;i<n;++i){ cin>>s[i]; } m=sizeof(s)/sizeof(s[0]); sort(s,s+m,greater<int>()); for(int x:s) { d+=x; k++; if(d>=h){ cout<<k; break;}} if(d<h) cout<<"-1"; return 0; }