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

I. Pirate Chest

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

의견: 0

설명

Pirate Dick finally had enough of fighting, marauding, theft, and making life miserable for many on the open seas. So he decided to retire, and he found the perfect island to spend the rest of his days on, provided he does not run out of money. He has plenty of gold coins now, and he wants to store them in a chest (he is a pirate after all). Dick can construct a rectangular chest with integer dimensions of any size up to a specified maximum size for the top but with an arbitrary integer height. Now he needs a place to hide the chest. While exploring the island, he found the perfect solution. Dick will hide his chest by submerging it in a murky pond. The pond has a rectangular surface, and it completely fills the bottom of a valley that has high vertical rocky walls. Dick surveyed the pond and knows its depth for each of the squares of a Cartesian coordinate grid system placed on the pond surface. When Dick submerges the chest, it will sink as far as possible until it touches the bottom. The top of the chest will remain parallel to the pond’s surface and the chest will be aligned with the grid squares. The water displaced by the submerged chest will raise the level of the pond’s surface (this will occur even if there is no space around the chest for the displaced water to rise). The walls of the valley are high enough that the water can never splash out of the valley. Of course, since the chest must be invisible, its top must be strictly below the surface of the pond. Your job is to find the volume of the largest chest that Pirate Dick can hide this way. In Figure I.1, the leftmost image shows a pond, the middle image shows a possible placement of a chest of volume 3, and the rightmost image shows a placement of a chest of volume 4, which is the maximum possible volume. Note that if the second chest were made one unit taller, its top would be visible because it would be at exactly the same height as the surface of the water. Figure I.1: Illustration of Sample Input 1.

제약
입력 형식

The input consists of a single test case. A test case starts with a line containing four integers \(a\), \(b\), \(m\), and \(n\) (\(1 \le a\), b, m, \(n \le 500\)). The pond’s surface dimensions are \(m \times n\) and the maximum size of the top (and bottom) of the chest is \(a \times b\). In addition, \(a\) and \(b\) are small enough that it is not possible to cover the entire pond with a chest with top size \(a \times b\). Each of the remaining \(m\) lines in a test case contains \(n\) integers \(d\)i,j specifying the pond’s depth at grid square (i, j), where \(0 \le d\)i,\(j \le 10^{9}\) for each \(1 \le i \le m\) and \(1 \le j \le n\).

출력 형식

Display the maximum volume of a rectangular chest with integer dimensions (where one of the dim\(en- si\)ons of the top is bounded by \(a\) and the other is bounded by \(b\)) that can be completely submerged below the surface of the pond. If no chest can be hidden in the pond, display 0.

예제 1
입력
3 1 2 3
2 1 1
2 2 1
출력
4
예제 2
입력
4 1 1 5
2 0 2 2 2
출력
12
예제 3
입력
2 3 3 5
2 2 2 2 2
2 2 2 2 2
2 2 2 2 2
출력
18
문제 정보

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

출처 ICPC World Finals 2013

평가 및 의견

I. Pirate Chest

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

Log in to rate problems.

개별 의견

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

풀이 제출

I. Pirate Chest

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