P7093 [CERC2014] Can't stop playing

题目描述

Some computer games are extremely fun and this problem may be about one of these. You are given a sequence of one dimensional blocks, each of length that is a power of two. The goal of the game is to merge all the blocks into one big block. The blocks are presented one by one, and for each one you have to decide whether to stick it immediately to the left or immediately to the right of the previous blocks. Every time two blocks of the same size are adjacent, they merge into one block that is twice as long as each of them. Note that, as long as possible, the resulting blocks immediately merge with adjacent ones. For example, if the current sequence of blocks is $2, 4, 16$, then sticking $2$ on the left side leads to $8, 16$, while sticking it on the right side gives $2, 4, 16, 2$. Note that at any moment there is at most one mergeable pair of blocks. You have lost the game (again!) and you are wondering whether there was any way to win at all. Analyze the sequence to find out.

输入格式

输出格式