Leetcode 2103: Rings and Rods
In this problem, we are given a list of rings going into rods, and we should return how many rods have rings with all the possible colors.
There are
n
rings and each ring is either red, green, or blue. The rings are distributed across ten rods labeled from0
to9
.
You are given a stringrings
of length2n
that describes then
rings that are placed onto the rods. Every two characters inrings
forms a color-position pair that is used to describe each ring where:
The first character of theith
pair denotes theith
ring's color ('R'
,'G'
,'B'
).
The second character of theith
pair denotes the rod that theith
ring is placed on ('0'
to'9'
).For example,
"R3G2B1"
describesn == 3
rings: a red ring placed onto the rod labeled 3, a green ring placed onto the rod labeled 2, and a blue ring placed onto the rod labeled 1.Return the number of rods that have all three colors of rings on them.
To solve this problem, we mostly need to reformat the input to something that will solve our problem easily. I introduced arr
so that the information is better organized. arr[i][j]
is true if there is a ring of color j
in the rod i
.
To do that we need to convert colors to integers [0, 2]. So I decided arbitrarily that B is 0, R is 1, and G is 2.
Our algorithm is the following. First we fill arr
by reading the string pair of characters by pair of characters. Then we check for each rod if the 3 colors are there. Finally we return the result.