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

S5. On the Fence

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

의견: 0

설명

You recently inherited a beautiful plot of land, which can be viewed
as a grid with \(N\) rows and \(M\) columns. Now you want to protect your
land from trespassers by building a giant fence on it. You will build
this fence by choosing up to \(K\) grid
cells and filling each of them with a concrete block; these cells are
on the fence. Due to mysterious construction laws, the cell in
row \(R\) and column \(C\) must be on the fence. Also, the fence
cells must form a single connected component—you should be able
to get between any two cells on the fence by moving vertically or
horizontally (not diagonally) through fence cells only.

The cells in row \(1\), column \(1\), row \(N\), and column \(M\) are called edge cells. A cell
not on the fence is outside the fence if you can get from that
cell to an edge cell by moving vertically, horizontally, or
diagonally, without going through any fence cells. Otherwise, the cell
is inside the fence. The figure below shows some examples of
valid and invalid fences.

This is a valid fence made of \(17\)
blocks, with \(5\) inside cells.

This fence is invalid because it is not connected.

This fence is valid, but it encloses zero inside cells.

You want to protect as much of your land as possible. Find the
largest number of inside cells you can enclose within your fence.

제약

\((1 \le K \le NM,~ 1 \le R \le N,~ 1 \le C \le M)\)
\(T \le 1000\)
\(1 \le N,M \le 10^9\)
\(T \le 10\)
\(1 \le N,M \le 6\)
\(1 \le N,M \le 40\)
\(1 \le N,M \le 300\)
\(1 \le N,M \le 2\,000\)
\(1 \le N,M \le 10^6\)

입력 형식

The first line of input contains an integer \(T\), the number of test cases in the
input.

The next \(T\) lines each contain a
test case, consisting of five space-separated integers: \(N\), \(M\), \(K\), \(R\), and \(C\) \((1 \le K \le NM,~ 1 \le R \le N,~ 1 \le C \le M)\).

The table on the next page shows how the available \(15\) marks are
distributed.

Marks Bounds on \(T\) Bounds on \(N\), \(M\) Additional Constraints
\(1\) \(T \le 1000\) \(1 \le N,M \le 10^9\) \(K=NM\)
\(2\) \(T \le 10\) \(1 \le N,M \le 6\) None
\(2\) \(T \le 10\) \(1 \le N,M \le 40\) None
\(2\) \(T \le 10\) \(1 \le N,M \le 300\) None
\(2\) \(T \le 10\) \(1 \le N,M \le 2\,000\) None
\(3\) \(T \le 10\) \(1 \le N,M \le 10^6\) None
\(3\) \(T \le 1000\) \(1 \le N,M \le 10^9\) None
출력 형식

Output \(T\) lines. The \(t\)-th line should contain a single
integer, the answer to test case \(t\).

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

Below are optimal fences for the two test cases, which enclose (4) and (3) inside cells, respectively:

문제 정보

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

출처 CCC 2026 Senior

평가 및 의견

S5. On the Fence

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

Log in to rate problems.

개별 의견

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

풀이 제출

S5. On the Fence

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