CF1420C1.Pokémon Army (easy version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is the easy version of the problem. The difference between the versions is that the easy version has no swap operations. You can make hacks only if all versions of the problem are solved.

Pikachu is a cute and friendly pokémon living in the wild pikachu herd.

But it has become known recently that infamous team R wanted to steal all these pokémon! Pokémon trainer Andrew decided to help Pikachu to build a pokémon army to resist.

First, Andrew counted all the pokémon — there were exactly nn pikachu. The strength of the ii -th pokémon is equal to aia_i , and all these numbers are distinct.

As an army, Andrew can choose any non-empty subsequence of pokemons. In other words, Andrew chooses some array bb from kk indices such that 1b1<b2<<bkn1 \le b_1 < b_2 < \dots < b_k \le n , and his army will consist of pokémons with forces ab1,ab2,,abka_{b_1}, a_{b_2}, \dots, a_{b_k} .

The strength of the army is equal to the alternating sum of elements of the subsequence; that is, ab1ab2+ab3ab4+a_{b_1} - a_{b_2} + a_{b_3} - a_{b_4} + \dots .

Andrew is experimenting with pokémon order. He performs qq operations. In ii -th operation Andrew swaps lil_i -th and rir_i -th pokémon.

Note: q=0q=0 in this version of the task.

Andrew wants to know the maximal stregth of the army he can achieve with the initial pokémon placement. He also needs to know the maximal strength after each operation.

Help Andrew and the pokémon, or team R will realize their tricky plan!

输入格式

Each test contains multiple test cases.

The first line contains one positive integer tt ( 1t1031 \le t \le 10^3 ) denoting the number of test cases. Description of the test cases follows.

The first line of each test case contains two integers nn and qq ( 1n3105,q=01 \le n \le 3 \cdot 10^5, q = 0 ) denoting the number of pokémon and number of operations respectively.

The second line contains nn distinct positive integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \le a_i \le n ) denoting the strengths of the pokémon.

ii -th of the last qq lines contains two positive integers lil_i and rir_i ( 1lirin1 \le l_i \le r_i \le n ) denoting the indices of pokémon that were swapped in the ii -th operation.

It is guaranteed that the sum of nn over all test cases does not exceed 31053 \cdot 10^5 , and the sum of qq over all test cases does not exceed 31053 \cdot 10^5 .

输出格式

For each test case, print q+1q+1 integers: the maximal strength of army before the swaps and after each swap.

输入输出样例

  • 输入#1

    3
    3 0
    1 3 2
    2 0
    1 2
    7 0
    1 2 5 4 3 6 7

    输出#1

    3
    2
    9

说明/提示

In third test case we can build an army in such way: [1 2 5 4 3 6 7], its strength will be 53+7=95−3+7=9 .

首页