CEOI 2011 - Balloons
Author: Chuyang Wang
Explanation
The problem can be solved by simulation. In particular, we want to inflate the balloons from left to right. The difficult part is to find out when the new balloon touches one of the inflated balloon on its left, and how to check this for all previous inflated balloons efficiently. For notation, is the radius and the x-coordinate of balloon .
First, let's determine when two balloons "touch" each other by calculating the maximum radius of the second balloon . As the x-coordinate of the previous inflated balloon and its radius are fixed, we can construct a rectangular triangle with the center of both balloons so that both adjacent and opposite sides are parallel to the axes. Using the Pythagorean theorem, we get . With some math, we can get an expression for the maximum radius of the second balloon . This tells us that the balloon can never have a larger radius than .
With this information, we could just check every previous inflated balloon and determine what the maximum radius of our current balloon is. This, however, has the time complexity of , which is too slow. Instead, we make use of our observation that any balloon with and will never be touched by balloons after . Therefore, we store inflated balloons in a stack. Each time when we want to inflate a new balloon , we check how long the radius of can be under the constraint of the first element from the stack. (Certainly, should still be less than the given maximum . ) If , we pop out from the stack and check the next element. will never be checked again. Otherwise, if , we can stop the check and store our newly inflated balloon into this stack.
Since we remove the element from the stack once we want to check further back, we have a time complexity of .
C++
Implementation
#include <bits/stdc++.h>using namespace std;const int PRECISION = 3;/** how long can the radius of the new balloon at position bx be* so that it touches the ballon a, which is described by* its x position a.first and its radius a.second*/
Java
Implementation
import java.io.*;import java.util.*;// class Balloons causes compilation error on ojuz, and therefore balpublic class bal {public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));int n = Integer.parseInt(br.readLine());// the radius of each balloon after inflating
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!