RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0507

Sleeping in Class

Bronze II 브론즈 II
난이도
2s
시간 제한
256MB
메모리 제한
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 \(N\) class periods
(\(1\le N\le 10^5\)), and Elsie logs that Bessie fell asleep \(a_i\) times
(\(0\le a_i\le 10^6\)) in the \(i\)-th class period. The total number of times Bessie fell
asleep across all class periods is at most \(10^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],\) then if Elsie combines the second and third class periods the
log will become \([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.

Problem credits: Jesse Choe

제약

Problem credits: Jesse Choe

입력 형식

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

The first line contains \(T\), the number of test cases to be solved. The \(T\) test
cases follow, each described by a pair of lines. The first line of each pair
contains \(N\), and the second contains \(a_1,a_2,\ldots,a_N\).

It is guaranteed that within each test case, the sum of all values in \(a\) is at
most \(10^6\). It is also guaranteed that the sum of \(N\) over all test cases is at
most
\(10^5\).

출력 형식

Please write \(T\) 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
출력
3
2
0
설명

For the first test case in this example, Elsie can change her log to consist
solely of 3s with 3 modifications.

   1 2 3 1 1 1
-> 3 3 1 1 1
-> 3 3 2 1
-> 3 3 3

For the second test case, Elsie can change her log to 7 with 2 modifications.

   2 2 3
-> 2 5
-> 7

For the last test case, Elsie doesn’t need to perform any operations; the log
already consists of equal entries.

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2021-2022 > February > Bronze

태그

평가 및 의견

Sleeping in Class

개요
출제자 난이도 Bronze II 브론즈 II 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Sleeping in Class

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8