RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0432 파일 입출력

Sprinklers 2: Return of the Alfalfa

Platinum I 플래티넘 I
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer John has a small field in the shape of an \(N\) by \(N\) grid
(\(1 \le N \le 2000\)) where the \(j\)-th square from the left of the \(i\)-th row
from the top is denoted by \((i,j)\) for all \(1 \le i,j \le N\). He is interested
in planting sweet corn and alfalfa in his field. To do so, he needs to install
some special sprinklers.

A sweet corn sprinkler in square \((I,J)\) will sprinkle all squares to the
bottom-left: i.e. \((i,j)\) with \(I \le i\) and \(j \le J\).

An alfalfa sprinkler in square \((I,J)\) will sprinkle all squares to the
top-right: i.e. \((i,j)\) with \(i \le I\) and \(J \le j\).

A square sprinkled by one or multiple sweet corn sprinklers can grow sweet corn;
a square sprinkled by one or multiple alfalfa sprinklers can grow alfalfa. But a
square sprinkled by both types of sprinklers (or neither type) can grow nothing.

Help FJ determine the number of ways (modulo \(10^9 + 7\)) to install sprinklers
in his field, at most one per square, so that every square is fertile (i.e.,
sprinkled by exactly one type of sprinkler).

Some of the squares are already occupied by woolly cows; this doesn't prevent
these squares from being fertile, but no sprinklers can be installed in such
squares.

Problem credits: Benjamin Qi

제약

SCORING

  • Test cases 3-4 satisfy \(N\le 10\) and there are at most ten unoccupied squares.
  • Test cases 5-9 satisfy \(N\le 200\).
  • Test cases 10-16 satisfy no additional constraints.

Problem credits: Benjamin Qi

입력 형식

The first line contains a single integer \(N.\)

For each \(1\le i\le N,\) the \(i+1\)-st line contains a string of length \(N\)
denoting the \(i\)-th row of the grid. Each character of the string is one of 'W'
(indicating a square occupied by a woolly cow), or '.' (unoccupied).

출력 형식

Output the remainder when the number of ways to install sprinklers is divided by
\(10^9+7.\)

파일 입력 / 출력
이 문제는 표준 입출력을 사용하지 않습니다. 프로그램은 다음 파일을 읽고 써야 합니다:
입력을 읽을 파일 sprinklers2.in
출력을 쓸 파일 sprinklers2.out
예제 1
입력
2
..
..
출력
28
설명

Here are all fourteen possibilities when sweet corn can grow at \((1,1)\).

CC  .C  CA  CC  .C  CA  CA  C.  CA  C.  CC  .C  CC  .C
CC, CC, CC, .C, .C, .C, CA, CA, .A, .A, C., C., .., ..
예제 2
입력
4
..W.
..WW
WW..
...W
출력
2304
설명

This satisfies the constraints for the first subtask described below.

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2019-2020 > US Open > Platinum

태그

평가 및 의견

Sprinklers 2: Return of the Alfalfa

개요
출제자 난이도 Platinum I 플래티넘 I 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

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

풀이 제출

Sprinklers 2: Return of the Alfalfa

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