The document summarizes solutions to problems from an ICPC competition. It discusses solutions to 8 problems:
1. Problem B on squeezing cylinders can be solved in O(N2) time by moving cylinders from left to right using Pythagorean theorem.
2. Problem C on sibling rivalry can be solved in O(n3) time using matrix multiplication to track reachable vertices, and iterating to minimize/maximize number of turns.
3. Problem D on wall clocks can be solved greedily in O(n2) time by sorting interval positions and placing clocks at rightmost positions.
4. Problem K on the min-max distance game can be solved by binary searching the distance t and