Codeforce-958C1

C
C1. Encryption (easy)
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 A and a positive integer p. She knows that the encryption code is a single number S, which is defined as follows:

Define the score of X to be the sum of the elements of X modulo p.

Heidi is given a sequence A that consists of N integers, and also given an integer p. She needs to split A into 2 parts such that:

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

Output the sum S, which is the encryption code.

Input

The first line of the input contains two space-separated integer N and p (2 ≤ N ≤ 100 0002 ≤ p ≤ 10 000) – the number of elements in A, and the modulo for computing scores, respectively.

The second line contains N space-separated integers which are the elements of A. Each integer is from the interval [1, 1 000 000].

Output

Output the number S as described in the problem statement.

Examples
input
Copy
4 10
3 4 7 2
output
Copy
16
input
Copy
10 12
16 3 24 13 9 8 7 5 12 12
output
Copy
13
Note

In the first example, the score is maximized if the input sequence is split into two parts as (3, 4)(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 .

题目大意:输入n,p;再输入n个数,将n个数分为连续的两部分,使得每一个部分的每个数之和%p之后的两部分和相加值最大,并输出最大的数

我的代码:

#include <iostream>
#define  ll long long int
using namespace std;
int main()
{
    ll n,p,m=0;
    ll a[10010];
    cin>>n>>p;
    for(int i=0;i<n;i++)
        {cin>>a[i];
        m+=a[i];}
    ll x,y,wyh,hyw,king=0;
    x=0;
    y=m;
    for(int i=1;i<n;i++)
    {
        x+=a[i-1];
        y-=a[i-1];
        wyh=x%p;
        hyw=y%p;
        king =max(king,wyh+hyw);
    }
    cout<<king<<endl;
    return 0;
}

提交结果:时间超限

看了下学长的代码后不能够理解 明天问一下

猜你喜欢

转载自blog.csdn.net/consine926/article/details/80963984
今日推荐