eolymp
bolt
Try our new interface for solving problems
Problems

Diamond Collector (Silver)

Diamond Collector (Silver)

Bessie the cow, always a fan of shiny objects, has taken up a hobby of mining diamonds in her spare time! She has collected $n$ diamonds of varying sizes, and she wants to arrange some of them in a pair of display cases in the barn. Since Bessie wants the diamonds in each of the two cases to be relatively similar in size, she decides that she will not include two diamonds in the same case if their sizes differ by more than $k$ (two diamonds can be displayed together in the same case if their sizes differ by exactly $k$). Given $k$, please help Bessie determine the maximum number of diamonds she can display in both cases together. \InputFile The first line contains $n\:(n \le 50000)$ and $k\:(0 \le k \le 10^9)$. The next $n$ lines each contain an integer giving the size of one of the diamonds. All sizes will be positive and will not exceed $10^9$. \OutputFile Output a single positive integer, telling the maximum number of diamonds that Bessie can showcase in total in both the cases.
Time limit 1 second
Memory limit 128 MiB
Input example #1
7 3
10
5
1
12
9
5
14
Output example #1
5
Source 2016 USACO US Open, Silver