58172023-10-02 17:46:32Lxllx13Vállalkozócpp17Time limit exceeded 32/40200ms5124 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
	int nap, munka;
	cin>>nap>>munka;
	vector<int> maxi(nap);
	vector<int>ora;
	for(int i=0; i<nap; i++){
		cin>>maxi[i];
		/*for(int j=0; j<maxi[i];j++){
			ora.push_back(i+1);
		}*/
	}
	vector<int> hat(munka);
	for(int i=0; i<munka; i++){
		cin>>hat[i];
		hat[i] -= 1;
	}
	int ans=0;
	sort(hat.begin(),hat.end());
	for(int i=0; i<nap; i++){
		for(int j=0; j<munka; j++){
			if(hat[j]>=i && maxi[i]>0){
				maxi[i]--;
				hat[j]=-1;
				ans++;
			}
		}
	}
	cout<<ans<<"\n";
	return 0;
}
SubtaskSumTestVerdictTimeMemory
base32/40
1Accepted0/03ms1808 KiB
2Time limit exceeded0/0177ms2764 KiB
3Accepted2/23ms2280 KiB
4Accepted2/23ms2488 KiB
5Accepted2/23ms2704 KiB
6Accepted2/24ms2868 KiB
7Accepted2/28ms3092 KiB
8Accepted2/23ms3292 KiB
9Accepted2/24ms3508 KiB
10Accepted2/23ms3712 KiB
11Accepted2/24ms3616 KiB
12Accepted2/24ms3896 KiB
13Accepted2/27ms3856 KiB
14Accepted2/24ms3916 KiB
15Accepted2/218ms4008 KiB
16Accepted2/224ms4004 KiB
17Time limit exceeded0/2200ms3236 KiB
18Time limit exceeded0/2172ms4168 KiB
19Time limit exceeded0/2159ms3304 KiB
20Accepted2/290ms4436 KiB
21Accepted2/2125ms4776 KiB
22Time limit exceeded0/2177ms5124 KiB