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

Autići

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

의견: 0

설명

There are \(n\) friends. Each friend has a remote control toy car and a garage
in which the car is stored. Every friend also has a pack of road parts used to
build the track for the cars. All the road parts in the \(i-th\) friend’s pack have
the same length \(d\)\(i\).
Two different friends \(a\) and \(b\) may connect their garages with a road. To build
this road, they will both take a road part from their pack and join them,
obtaining a road of length \(d_{a} +d_{b}\). Some pairs of friends are going to connect their garages in the described
way, so that everyone’s garages are connected. In other words, starting from any garage it should be
possible to reach any other garage using the roads.
What is the minimum total road length needed to make a road network in which all the garages are
connected?

제약

Subtask 1 (10 points): \(d@@RISE_MATH_BLOCK_0@@n\)

Subtask 2 (20 points): \(1 \le n \le 1000\)

Subtask 3 (20 points): No additional constraints.

입력 형식

The first line contains a positive integer \(n\) (\(1 \le n \le 100\,000\)), the number of friends.
The next line contains \(n\) positive integers \(d@@RISE_MATH_BLOCK_0@@i \le 10^{9}\)), the length of the road parts in the \(i-th\)
friend’s pack.

출력 형식

In the only line print the minimum total road length needed to make all the garages connected.

서브태스크
서브태스크점수설명

1

10점

\(d@@RISE_MATH_BLOCK_0@@n\)

2

20점

\(1 \le n \le 1000\)

3

20점

No additional constraints.

예제 1
입력
1
10
출력
0
예제 2
입력
3
5 5 5
출력
20
예제 3
입력
4
7 3 3 5
출력
24
설명

Clarification of the first example:
Since there is only one friend, his garage is already connected to itself, so there is no need for building any
roads.
Clarification of the third example:
If roads are built between friends 1 and 2, 2 and 3, and between 3 and 4, everyone will be connected, and
the total cost will be (7 + 3) + (3 + 3) + (3 + 5) = 24.

문제 정보

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

출처 COCI 2021/2022 Contest 4

평가 및 의견

Autići

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

Log in to rate problems.

개별 의견

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

풀이 제출

Autići

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