标签:top 高度 algo scan bsp block printf 格式 多少
6 40
6
18
11
13
19
11
3
大水题一道,直接排序然后计算.
#include<cstdio> #include<algorithm> using namespace std; int h[20001]; int main() { int n,s; scanf("%d%d",&n,&s); for(int i=1;i<=n;i++) scanf("%d",&h[i]); sort(h+1,h+n+1); for(int i=n;i>0;i--) { s-=h[i]; if(s<=0){printf("%d",n-i+1);return 0;} } }
标签:top 高度 algo scan bsp block printf 格式 多少
原文地址:http://www.cnblogs.com/OIerLYF/p/6958846.html