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

Zid

설명

Mr. Malnar wants to put up a picture of himself on the wall. The wall can be
represented as a matrix with \(n\) rows and \(m\) columns. Since he has placed his
picture on the wall many times before, some positions still have nails embedded
in them. Such positions are marked with the symbol "#", while empty spots are
marked with the symbol ".".
The picture has a rectangular shape with arbitrary dimensions and is placed on
the wall in a way that it covers a rectangular area. The picture can be placed on
the wall if it covers at most one position that contains a nail.
Help Mr. Malnar calculate the number of ways he can place his picture on the wall.

제약
입력 형식

The first line of input contains \(n\) and \(m\) (\(1 \le n\), \(m \le 500\)), the dimensions of the wall.
In each of the next \(n\) lines, there are \(m\) characters \(c_{ij}\), describing the wall. Each character will be either
"." or "#" (without quotes).

출력 형식

In a single line of output, print the number of possible ways to place the picture on the wall.

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

1

17점

n, \(m \le 10\)

2

21점

n, \(m \le 100\)

3

32점

No additional constraints.

예제 1
입력
3 3
...
...
..#
출력
36
예제 2
입력
4 4
....
.#..
#...
#.#.
출력
76
예제 3
입력
5 5
.....
#..#.
..#.#
.....
..#..
출력
154
설명

Clarification of the first example:
Each placement of the picture is valid as long as it covers at most one nail.
Clarification of the second example:
The picture cannot be placed in a way that it covers positions (3, 1) and (4, 1) simultaneously.

문제 정보

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

출처 COCI 2024/2025 Contest 5

평가 및 의견

Zid

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

Log in to rate problems.

개별 의견

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

풀이 제출

Zid

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