Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

princejvm's blog

By princejvm, history, 5 years ago, In English

This problem is asked in google code round 1B.
https://code.google.com/codejam/contest/8294486/dashboard#s=p1&a=1
I wanted to know how to solve this problem using dynamic programming?
Problem You are lucky enough to own N pet unicorns. Each of your unicorns has either one or two of the following kinds of hairs in its mane: red hairs, yellow hairs, and blue hairs. The color of a mane depends on exactly which sorts of colored hairs it contains:

A mane with only one color of hair appears to be that color. For example, a mane with only blue hairs is blue. A mane with red and yellow hairs appears orange. A mane with yellow and blue hairs appears green. A mane with red and blue hairs appears violet. You have R, O, Y, G, B, and V unicorns with red, orange, yellow, green, blue, and violet manes, respectively.

You have just built a circular stable with N stalls, arranged in a ring such that each stall borders two other stalls. You would like to put exactly one of your unicorns in each of these stalls. However, unicorns need to feel rare and special, so no unicorn can be next to another unicorn that shares at least one of the hair colors in its mane. For example, a unicorn with an orange mane cannot be next to a unicorn with a violet mane, since both of those manes have red hairs. Similarly, a unicorn with a green mane cannot be next to a unicorn with a yellow mane, since both of those have yellow hairs.

Is it possible to place all of your unicorns? If so, provide any one arrangement.

Input The first line of the input gives the number of test cases, T. T test cases follow. Each consists of one line with seven integers: N, R, O, Y, G, B, and V.

Output For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is IMPOSSIBLE if it is not possible to place all the unicorns, or a string of N characters representing the placements of unicorns in stalls, starting at a point of your choice and reading clockwise around the circle. Use R to represent each unicorn with a red mane, O to represent each unicorn with an orange mane, and so on with Y, G, B, and V. This arrangement must obey the rules described in the statement above.

If multiple arrangements are possible, you may print any of them.

Limits 1 ≤ T ≤ 100. 3 ≤ N ≤ 1000. R + O + Y + G + B + V = N. 0 ≤ Z for each Z in {R, O, Y, G, B, V}.

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By princejvm, history, 6 years ago, In English

Does the sequence of including or excluding elements in block via changes in left pointer and right pointer matters. As in question http://codeforces.com/contest/351/problem/D my solution got accepted for left exclusion-> right inclusion-> right exclusion->left inclusion but resulted into wrong answer for left exclusion->left inclusion-> right inclusion-> right exclusion my accepted solution http://codeforces.com/contest/351/submission/31897729 my wrong answer submission-> http://codeforces.com/contest/351/submission/31897757 kindly see this problem as it's strange!!

Full text and comments »

  • Vote: I like it
  • -11
  • Vote: I do not like it