CF958C1.Encryption (easy)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Rebel spy Heidi has just obtained the plans for the Death Star from the Empire and, now on her way to safety, she is trying to break the encryption of the plans (of course they are encrypted – the Empire may be evil, but it is not stupid!). The encryption has several levels of security, and here is how the first one looks.

Heidi is presented with a screen that shows her a sequence of integers AA and a positive integer pp . She knows that the encryption code is a single number SS , which is defined as follows:

Define the score of XX to be the sum of the elements of XX modulo pp .

Heidi is given a sequence AA that consists of NN integers, and also given an integer pp . She needs to split AA into 22 parts such that:

  • Each part contains at least 11 element of AA , and each part consists of contiguous elements of AA .
  • The two parts do not overlap.
  • The total sum SS of the scores of those two parts is maximized. This is the encryption code.

Output the sum SS , which is the encryption code.

输入格式

The first line of the input contains two space-separated integer NN and pp ( 2<=N<=1000002<=N<=100000 , 2<=p<=100002<=p<=10000 ) – the number of elements in AA , and the modulo for computing scores, respectively.

The second line contains NN space-separated integers which are the elements of AA . Each integer is from the interval [1,1000000][1,1000000] .

输出格式

Output the number SS as described in the problem statement.

输入输出样例

  • 输入#1

    4 10
    3 4 7 2
    

    输出#1

    16
    
  • 输入#2

    10 12
    16 3 24 13 9 8 7 5 12 12
    

    输出#2

    13
    

说明/提示

In the first example, the score is maximized if the input sequence is split into two parts as (3,4)(3,4) , (7,2)(7,2) . It gives the total score of .

In the second example, the score is maximized if the first part consists of the first three elements, and the second part consists of the rest. Then, the score is .

首页