ThreeColorabilityEasy
SRM 587 · 2013-06-25 · by ir5
Problem Statement
There is a H times W rectangle divided into unit cells. The rows of cells are numbered 0 to H-1 from top to bottom, and the columns are numbered 0 to W-1 from left to right. The corners of cells are called lattice points. By definition, there are (H+1)*(W+1) lattice points in our rectangle.
Each of the four edges of each cell is painted white. Additionally, in each cell exactly one of the two diagonals is painted white. Two lattice points are called adjacent if they are connected by a white line segment. (In other words, consecutive corners of a cell are always adjacent, opposite corners of a cell are adjacent if and only if they are connected by a painted diagonal, and no other pairs of lattice points are adjacent.)
We now want to color each of the lattice points using one of three available colors: red, green, or blue. There is only one constraint: adjacent lattice points are not allowed to share the same color.
You are given a
If there is at least one valid way to color all lattice points, return "Yes" (quotes for clarity). Otherwise, return "No".
Constraints
- cells will contain between 1 and 50 elements, inclusive.
- Each element of cells will contain between 1 and 50 characters, inclusive.
- All elements of cells will contain the same number of characters.
- Each character of cells will be either 'N' or 'Z'.
{"Z"}
Returns: "Yes"
One of the possible colorings is as follows.
{"NZ"
,"NZ"}
Returns: "Yes"
{"ZZZ"
,"ZNZ"}
Returns: "No"
{"NZNZNNN"
,"NNZNNNZ"
,"NNNNZZZ"
,"ZZZNZZN"
,"ZZNZNNN"
,"NZZZZNN"
,"ZZZNZNN"}
Returns: "No"
{"ZZZZ"
,"ZZZZ"
,"ZZZZ"}
Returns: "Yes"
Submissions are judged against all 72 archived test cases, of which 5 are shown here. Case numbers match the judge’s.
Language: C++17 · define a public class ThreeColorabilityEasy with a public method string isColorable(vector<string> cells) · 72 test cases · 2 s / 256 MB per case