시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB37262571.429%

문제

After taking part in the annual Two-player Games and Applied Cryptography Symposium, Alice and Bob want to relax by playing their favourite game. They have arranged n cheese slices in a row, numbered from 1 do n. As we all know, though cheese is tasty in general, some slices can be better than others – this is why the i-th slice is described by its deliciousness oi.

Alice starts the game and the players alternate their moves. In a move, a player may eat any set of cheese slices that are still left on the board, providing that the set contains no two neighbouring slices (i.e. numbered i and i+1 for any 1 ≤ in−1). We assume that the numbers of the slices do not change, so during the game no new neighbouring pairs appear.

Of course, both players aim to maximize the total delicioussness of their eaten pieces. Assuming that they both play optimally, what is the maximal score that Alice can achive?

입력

The first line of input contains the number of test cases z (1 ≤ z ≤ 20). The test cases follow, each one in the following format:

The first line of a test case contains the number of cheese slices n (1 ≤ n ≤ 100 000). The second line contains n integers o1, o2, . . . , on (1 ≤ oi ≤ 1 000 000) – the values of the pieces’ delicioussness.

출력

For every test case, output a single integer – the total delicioussness of the slices eaten by Alice, assuming that both players play optimally.

예제 입력 1

2
3
10 10 10
4
1 2 3 4

예제 출력 1

20
7