CF1292D.Chaotic V.

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Æsir - CHAOS

Æsir - V.

"Everything has been planned out. No more hidden concerns. The condition of Cytus is also perfect.

The time right now...... 00:01:12......

It's time."

The emotion samples are now sufficient. After almost 3 years, it's time for Ivy to awake her bonded sister, Vanessa.

The system inside A.R.C.'s Library core can be considered as an undirected graph with infinite number of processing nodes, numbered with all positive integers ( 1,2,3,1, 2, 3, \ldots ). The node with a number xx ( x>1x > 1 ), is directly connected with a node with number xf(x)\frac{x}{f(x)} , with f(x)f(x) being the lowest prime divisor of xx .

Vanessa's mind is divided into nn fragments. Due to more than 500 years of coma, the fragments have been scattered: the ii -th fragment is now located at the node with a number ki!k_i! (a factorial of kik_i ).

To maximize the chance of successful awakening, Ivy decides to place the samples in a node PP , so that the total length of paths from each fragment to PP is smallest possible. If there are multiple fragments located at the same node, the path from that node to PP needs to be counted multiple times.

In the world of zeros and ones, such a requirement is very simple for Ivy. Not longer than a second later, she has already figured out such a node.

But for a mere human like you, is this still possible?

For simplicity, please answer the minimal sum of paths' lengths from every fragment to the emotion samples' assembly node PP .

输入格式

The first line contains an integer nn ( 1n1061 \le n \le 10^6 ) — number of fragments of Vanessa's mind.

The second line contains nn integers: k1,k2,,knk_1, k_2, \ldots, k_n ( 0ki50000 \le k_i \le 5000 ), denoting the nodes where fragments of Vanessa's mind are located: the ii -th fragment is at the node with a number ki!k_i! .

输出格式

Print a single integer, denoting the minimal sum of path from every fragment to the node with the emotion samples (a.k.a. node PP ).

As a reminder, if there are multiple fragments at the same node, the distance from that node to PP needs to be counted multiple times as well.

输入输出样例

  • 输入#1

    3
    2 1 4

    输出#1

    5
  • 输入#2

    4
    3 1 4 4

    输出#2

    6
  • 输入#3

    4
    3 1 4 1

    输出#3

    6
  • 输入#4

    5
    3 1 4 1 5

    输出#4

    11

说明/提示

Considering the first 2424 nodes of the system, the node network will look as follows (the nodes 1!1! , 2!2! , 3!3! , 4!4! are drawn bold):

For the first example, Ivy will place the emotion samples at the node 11 . From here:

  • The distance from Vanessa's first fragment to the node 11 is 11 .
  • The distance from Vanessa's second fragment to the node 11 is 00 .
  • The distance from Vanessa's third fragment to the node 11 is 44 .

The total length is 55 .

For the second example, the assembly node will be 66 . From here:

  • The distance from Vanessa's first fragment to the node 66 is 00 .
  • The distance from Vanessa's second fragment to the node 66 is 22 .
  • The distance from Vanessa's third fragment to the node 66 is 22 .
  • The distance from Vanessa's fourth fragment to the node 66 is again 22 .

The total path length is 66 .

首页