B. Young Explorers1200 / 贪心

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Young Explorers1200 / 贪心相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/1355/B

#include<bits/stdc++.h>
using namespace std;
const int N=1e5*3+10;
int t,n,a[N];
int main(void)

	cin>>t;
	while(t--)
	
		cin>>n;
		for(int i=0;i<n;i++) cin>>a[i];
		sort(a,a+n);
		int ans=0,cnt=0;
		for(int i=0;i<n;i++) 
		
			if(++cnt>=a[i])
			
				ans++;
				cnt=0;
			
		
		cout<<ans<<endl;
	
	return 0;

以上是关于B. Young Explorers1200 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

B. Young Explorers1200 / 贪心

B. Worms1200 / 二分

B. AccurateLee难度: 1200 / 贪心

B. AccurateLee难度: 1200 / 贪心

B. AccurateLee难度: 1200 / 贪心

B. BerSU Ball1200 / 暴力