Editorial for COCI '21 Contest 1 #3 Logičari
Submitting an official solution before solving the problem yourself is a bannable offence.
We will call nodes which will have blue-eyed logicians on them black nodes, and the other nodes will be called white nodes. Notice that every black node has exactly one black neighbour and that it is also that node's neighbour. Thus, the black nodes come in pairs as the endpoints of certain edges.
For the first subtask, one should notice that the nodes in a cycle should alternate between two black nodes and two white nodes, so the solution exists only when
The second subtask can be solved by trying out all possibilities for the black nodes with time complexity
For the remaining subtasks, one should notice that the graph contains exactly one cycle, where from each node of the cycle, a tree might hang off rooted at that node. Using a DFS we can find that cycle and then remove one of the edges of the cycle. One of the ends we will call the root, and the other one will be the special node. After removing the edge, the remaining graph is a tree, which we will root in the mentioned root node.
The task will be solved with dynamic programming on the obtained tree. We will fix one of the possibilities for the choice of colour of the root and the special node (
The transition is as follows. First, we determine the cases in which the flags in the state don't match up (so the answer is immediately -1
for this state). This happens when:
is the root, and . is the special node, and . is the special node, and and are black - then is covered by two black neighbours.
Then we figure out if the current node
Comments