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

J. Frosting on the Cake

설명

Iskander the Baker is decorating a huge cake, covering the rectangular surface of the cake with frosting. For this purpose, he mixes frosting sugar with lemon juice and food coloring, in order to produce three kinds of frosting: yellow, pink, and white. These colors are identified by the numbers 0 for yellow, 1 for pink, and 2 for white.

To obtain a nice pattern, he partitions the cake surface into vertical stripes of width \(A_1, A_2, \dots, A_n\) centimeters, and horizontal stripes of height \(B_1, B_2, \dots, B_n\) centimeters, for some positive integer \(n\). These stripes split the cake surface into \(n\times n\) rectangles. The intersection of vertical stripe \(i\) and horizontal stripe \(j\) has color number \((i+j) \bmod 3\) for all $1 \leq
i,j \leq n$. To prepare the frosting, Iskander wants to know the total surface in square centimeters to be colored for each of the three colors, and asks for your help.

제약
입력 형식

The input consists of the following integers:
- on the first line: the integer \(n\),
- on the second line: the values of \(A_1,\dots,A_n\), \(n\) integers separated with single spaces,
- on the third line: the values of \(B_1,\dots,B_n\), \(n\) integers separated with single spaces.

Limits

The input satisfies \(3\leq n \leq 100\,000\) and \(1 \leq A_1,\ldots,A_n,B_1,\ldots,B_n \leq 10\,000\).

출력 형식

The output should consist of three integers separated with single spaces, representing the total area for each color 0, 1, and 2.

예제 1
입력
3
1 1 1
1 1 1
출력
3 3 3
예제 2
입력
7
6 2 4 5 1 1 4
2 5 1 4 2 3 4
출력
155 131 197
문제 정보

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

출처 ICPC SWERC 2017

평가 및 의견

J. Frosting on the Cake

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

Log in to rate problems.

개별 의견

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

풀이 제출

J. Frosting on the Cake

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