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

J5. Modern Art

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

의견: 0

설명

A new and upcoming artist has a unique way to create checkered patterns.
The idea is to use an \(M\)-by-\(N\) canvas which is initially entirely
black. Then the artist repeatedly chooses a row or column and runs their
magic brush along the row or column. The brush changes the colour of
each cell in the row or column from black to gold or gold to black.

Given the artist’s choices, your job is to determine how much gold
appears in the pattern determined by these choices.

제약

Marks

The following table shows how the available 15 marks are
distributed.

1 mark \(M = 1\) \(N=1\) \(K \leq 100\) only one cell, and up to 100 choices by the artist
4 marks \(M = 1\) \(N \leq 100\) \(K \leq 100\) only one row, and up to 100 choices by the artist
5 marks \(M \leq 100\) \(N \leq 100\) \(K \leq 100\) up to 100 rows, up to 100 columns, and up to 100 choices by the artist
5 marks \(MN \leq 5\,000\,000\) \(K \leq 1\,000\,000\) up to 5000000 cells, and up to 1000000 choices by the artist
입력 형식

The first line of input will be a positive integer \(M\). The second line of input will be a
positive integer \(N\). The third line
of input will be a positive integer \(K\). The remaining input will be \(K\) lines giving the choices made by the
artist. Each of these lines will either be R
followed by a single space and then an integer which is a row number, or
C followed by a single space and then an
integer which is a column number. Rows are numbered top down from \(1\) to \(M\). Columns are numbered left to right
from \(1\) to \(N\).

출력 형식

Output one non-negative integer which is equal to the number of cells
that are gold in the pattern determined by the artist’s choices.

예제 1
입력
3
3
2
R 1
C 1
출력
4
설명

After running the brush along the first row, the canvas looks like
this:

GGG
BBB
BBB

Then after running the brush along the first column, four cells are
gold in the final pattern determined by the artist’s choices:

BGG
GBB
GBB
예제 2
입력
4
5
7
R 3
C 1
C 2
R 2
R 2
C 1
R 4
출력
10
설명

Ten cells are gold in the final pattern determined by the artist’s
choices:

BGBBB
BGBBB
GBGGG
GBGGG
문제 정보

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

출처 CCC 2021 Junior

평가 및 의견

J5. Modern Art

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

Log in to rate problems.

개별 의견

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

풀이 제출

J5. Modern Art

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