-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path455A.cpp
44 lines (38 loc) · 771 Bytes
/
455A.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
#include <bits/stdc++.h>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using p = pair<int, int>;
const int INF = 0x66554433;
ll arr[100001];
ll dp[100001];
inline void quick_IO(){
ios_base :: sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
}
int main(){
quick_IO();
int n;
int i, j, k;
cin>>n;
int temp;
int maxValue = -1;
for(i=0;i<n;i++){
cin>>temp;
maxValue = max(temp, maxValue);
arr[temp]++;
}
dp[1] = arr[1];
for(i=2;i<=maxValue;i++){
dp[i] = max(dp[i-2]+arr[i]*i, dp[i-1]);
}
cout<<dp[maxValue]<<"\n";
return 0;
}