#576
Silver III
Sleeping in Class
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Bessie the cow was excited to recently return to in-person learning! Unfortunately, her instructor, Farmer John, is a very boring lecturer, and so she ends up falling asleep in class often.

Farmer John has noticed that Bessie has not been paying attention in class. He has asked another student in class, Elsie, to keep track of the number of times Bessie falls asleep in a given class. There are NN class periods (1N1051\le N\le 10^5), and Elsie logs that Bessie fell asleep aia_i times (0ai1060\le a_i\le 10^6) in the ii-th class period. The total number of times Bessie fell asleep across all class periods is at most 10610^6.

Elsie, feeling very competitive with Bessie, wants to make Farmer John feel like Bessie is consistently falling asleep the same number of times in every class -- making it appear that the issue is entirely Bessie's fault, with no dependence on Farmer John's sometimes-boring lectures. The only way Elsie may modify the log is by combining two adjacent class periods. For example, if a=[1,2,3,4,5],a=[1,2,3,4,5], then if Elsie combines the second and third class periods the log will become [1,5,4,5][1,5,4,5].

Help Elsie compute the minimum number of modifications to the log that she needs to make so that she can make all the numbers in the log equal.

입력

Each input will contain TT (1T101\le T\le 10) test cases that should be solved independently.

The first line contains TT, the number of test cases to be solved. The TT test cases follow, each described by a pair of lines. The first line of each pair contains NN, and the second contains a1,a2,,aNa_1,a_2,\ldots,a_N.

It is guaranteed that within each test case, the sum of all values in aa is at most 10610^6. It is also guaranteed that the sum of NN over all test cases is at most 10510^5.

출력

Please write TT lines of output, giving the minimum number of modifications Elsie could perform to make all the log entries equal for each case.

예제 입력 1

3
6
1 2 3 1 1 1
3
2 2 3
5
0 0 0 0 0

예제 출력 1

3
2
0
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Silver III1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.