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

Ravnalo

설명

Architect Hrvoje has been tasked with drawing a large irregular wall composed
of vertical columns.
The wall consists of \(n\) columns placed next to each other, where the \(i\)-th column
has height \(a_{i}\) and width 1. In order to make the drawing as complicated as possible,
the \(i\)-th column is divided into \(b_{i}\) parts of equal height.
Hrvoje has only a ruler and a pencil at his disposal. With one stroke of the pencil
he can draw one line segment (a straight line between two points) without lifting
the pencil. His goal is to draw the entire wall, including all column edges and all
boundaries between their divisions, using as few line segments as possible.
For the given wall, output the minimum number of line segments that need to be drawn in order to draw
the wall completely.

제약
입력 형식

The first line contains a natural number \(n\) (\(1 \le n \le 10^{5}\)), the number from the problem statement.
The second line contains a sequence of \(n\) numbers \(1 \le a_{i} \le 10^{9}\), from the problem statement.
The third line contains a sequence of \(n\) numbers \(1 \le b_{i} \le 10^{9}\), from the problem statement.

출력 형식

In the first and only line output one number – the minimum number of line segments Hrvoje needs to
draw to draw the wall.

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

1

11점

\(N = 1\)

2

13점

\(N = 2\), \(1 \le a_{i}\), \(b_{i} \le 10\)

3

29점

\(1 \le a_{i} \le 10^{6}\), \(b_{i}\) divides \(a_{i}\) for every \(1 \le i \le n\)

4

57점

No additional constraints.

예제 1
입력
3
4 6 4
2 3 4
출력
10
예제 2
입력
3
4 6 3
3 3 2
출력
12

Pojašnjenje drugog probnog primjera: Hrvoje will extend the topmost line segment in the first
column into the second column and thus “merge” 2 line segments into one. He will do the same with the
3 line segments at the bottom of the wall. This way, he will draw a total of 12 line segments, and it can
be shown that this is the minimum number of line segments that Hrvoje needs to draw.
문제 정보

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

출처 COCI 2025/2026 Contest 3

평가 및 의견

Ravnalo

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

Log in to rate problems.

개별 의견

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

풀이 제출

Ravnalo

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