-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1148-mad_counting.cpp
55 lines (35 loc) · 918 Bytes
/
1148-mad_counting.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll arr[1001000];
vector <pair <ll,ll> > v;
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam","r",stdin);
#endif
ios_base::sync_with_stdio(false);
ll i,j,k,n,m,t,cont,a,b;
cin >> t;
ll cases = t;
while(t--){
memset(arr,0,sizeof arr);
cin >> n;
for(i=0;i < n;i++) {
cin >> k;
arr[k]++;
}
ll ans =0;
for(i=0;i < 1000100;i++) {
if(arr[i] !=0) {
k = arr[i];
ans += (arr[i]/(i+1)) *(i+1);
if(arr[i] % (i+1) != 0)
ans += (i+1);
}
}
cout << "Case " << cases-t << ": " << ans << endl;
}
return 0;
}