Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.61 KB

1931-painting-a-grid-with-three-different-colors.adoc

File metadata and controls

75 lines (52 loc) · 1.61 KB

1931. Painting a Grid With Three Different Colors

{leetcode}/problems/painting-a-grid-with-three-different-colors/[LeetCode - 1931. Painting a Grid With Three Different Colors ^]

You are given two integers m and n. Consider an m x n grid where each cell is initially white. You can paint each cell red, green, or blue. All cells must be painted.

Return_ the number of ways to color the grid with no two adjacent cells having the same color*_. Since the answer can be very large, return it *modulo 109 + 7.

Example 1: <img alt="" src="https://assets.leetcode.com/uploads/2021/06/22/colorthegrid.png" style="width: 200px; height: 50px;" />

Input: m = 1, n = 1
Output: 3
Explanation: The three possible colorings are shown in the image above.

Example 2: <img alt="" src="https://assets.leetcode.com/uploads/2021/06/22/copy-of-colorthegrid.png" style="width: 321px; height: 121px;" />

Input: m = 1, n = 2
Output: 6
Explanation: The six possible colorings are shown in the image above.

Example 3:

Input: m = 5, n = 5
Output: 580986

Constraints:

  • 1 ⇐ m ⇐ 5

  • 1 ⇐ n ⇐ 1000

思路分析

一刷
link:{sourcedir}/_1931_PaintingAGridWithThreeDifferentColors.java[role=include]

参考资料