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

S4. Tourism

Unrated 레이팅 미적용
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

You are planning a trip to visit \(N\)
tourist attractions. The attractions are numbered from \(1\) to \(N\) and must be visited in this order. You
can visit at most \(K\) attractions per
day, and want to plan the trip to take the fewest number of days as
possible.

Under these constraints, you want to find a schedule that has a nice
balance between the attractions visited each day. To be precise, we
assign a score \(a_i\) to attraction
\(i\). Given a schedule, each day is
given a score equal to the maximum score of all attractions visited that
day. Finally, the scores of each day are summed to give the total score
of the schedule. What is the maximum possible total score of the
schedule, using the fewest days possible?

제약

\((1\le K\le N\le 10^6)\)
\((1\le a_i\le 10^9)\)
\(2K\ge N\)
\(K\le 100\)
\(N\le 10^5\)

입력 형식

The first line contains two space-separated integers \(N\) and \(K\) \((1\le K\le N\le 10^6)\).

The next line contains \(N\) space
separated integers \(a_i\) \((1\le a_i\le 10^9)\).

For 3 of the 15 available marks, \(2K\ge N\).

For an additional 3 of the 15 available marks, \(K\le 100\) and \(N\le 10^5\).

출력 형식

Output a single integer, the maximum possible total score.

예제 1
입력
5 3
2 5 7 1 4
출력
12
설명

We need to have at least two days to visit all the attractions, since we
cannot visit all attractions in one day.

Visiting the first two attractions on day 1 will give a score of 5,
and visiting the last three attractions on day 2 will give a score of 7,
for a total score of 12.

Visiting three attractions on day 1, and two attractions on day 2,
which is the only possibility to visit in the fewest number of days
possible, would yield a total score of \(7+4=11\).

문제 정보

생성자가 기록되지 않았습니다.

출처 CCC 2019 Senior

평가 및 의견

S4. Tourism

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

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

풀이 제출

S4. Tourism

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