CEOI 2011 - Balloons

Author: Chuyang Wang

Table of Contents

ExplanationImplementation

Official Analysis

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 bb touches one of the inflated balloon aa on its left, and how to check this for all previous inflated balloons efficiently. For notation, ara_r is the radius and axa_x the x-coordinate of balloon aa.

First, let's determine when two balloons "touch" each other by calculating the maximum radius of the second balloon brb_r. As the x-coordinate of the previous inflated balloon axa_x and its radius ara_r 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 (bxax)2+(brar)2=(br+ar)2(b_x - a_x)^2 + (b_r - a_r)^2 = (b_r + a_r)^2. With some math, we can get an expression for the maximum radius of the second balloon br=(bxax)24arb_r = \frac{(b_x - a_x)^2}{4a_r}. This tells us that the balloon bb can never have a larger radius than brb_r.

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 O(n2)\mathcal{O}(n^2), which is too slow. Instead, we make use of our observation that any balloon ii with irbri_r \leq b_r and ix<bxi_x < b_x will never be touched by balloons after bb. Therefore, we store inflated balloons in a stack. Each time when we want to inflate a new balloon bb, we check how long the radius of bb can be under the constraint of the first element aa from the stack. (Certainly, brb_r should still be less than the given maximum rr. ) If brarb_r \geq a_r, we pop aa out from the stack and check the next element. aa will never be checked again. Otherwise, if br<arb_r < a_r, we can stop the check and store our newly inflated balloon bb into this stack.

Since we remove the element from the stack once we want to check further back, we have a time complexity of O(n)\mathcal{O}(n).

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 bal
public 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!