Hide

Problem B
Pitch Performance

After a recent disaster at the Easter party karaoke, you are working on improving your singing. To gauge how well you are doing, you would like to measure how much the pitch and timing of your singing differs from the target melody you were trying to perform.

We model the melody in a simplified manner as a piecewise-constant function $f$, where at time $x$ the melody has pitch $f(x)$. In other words from time $0$ up to some time $x_1$, $f(x)$ is some constant value $y_1$, and then at time $x_1$ it changes to some other value $y_2$ and remains at that value until some time $x_2 > x_1$, and so on.

Your voice, on the other hand, is of a more wavering nature, and you may generally not be able to hold an exact constant pitch for any period of time, sometimes breaking off into an unwelcome falsetto and sometimes croaking on those low tones. The pitch of your voice can be modeled in a highly simplistic way as a piecewise-quadratic function $g$. In other words from time $0$ up to $x_1$ (not necessarily the same $x_1$ as for the function $f$), your pitch $g(x)$ agrees with some quadratic polynomial, and then from time $x_1$ to $x_2$ with some other quadratic polynomial, and so on.

The difference between your performance $g$ and the target melody $f$ is the area between these two functions. See Figure 1 for an example. Given the melody $f$ and your performance $g$, compute their difference.

\includegraphics[width=0.73\textwidth ]{sample1.pdf}

Figure 1: Illustration of Sample Input 1. The difference between $f$ and $g$ is the area of the shaded region in the figure.

Input

The first line of input contains an integer $n$ ($1 \le n \le 500$), the number of pieces in the target melody function $f$. Then follow $n$ lines describing $f$. The $i$’th such line contains two integers $x_ i$ and $y_ i$ ($x_{i-1} < x_ i \le 10^4$ and $0 \le y_ i \le 10^4$). For all $x$ in the half-open interval $[x_{i-1}, x_ i)$, the value of $f(x)$ equals $y_ i$. For the first interval we define $x_0 = 0$.

Then follows a line containing an integer $m$ ($1 \le m \le 500$), the number of pieces in the function $g$ describing your performance. The next $m$ lines contain the description of $g$. The $i$’th such line contains four integers $x’_ i$, $a_ i$, $b_ i$ and $c_ i$ ($x’_{i-1} < x’_ i \le 10^4$ and $-10^{7} \le a_ i, b_ i, c_ i \le 10^{7}$). For all $x$ in the half-open interval $[x’_{i-1}, x’_ i)$, the value of $g(x)$ equals $a_ ix^2 + b_ ix + c_ i$. For the first interval we define $x’_0 = 0$.

You may assume that $0 \le g(x) \le 10^4$ for all $x’_0 \le x \le x’_ m$ and that the two functions end at the same time (i.e., $x_ n = x’_ m$).

Output

Output the difference between $f$ and $g$. Your output should be correct to within an absolute or relative error of at most $10^{-6}$.

Sample Input 1 Sample Output 1
2
3 20
10 10
3
2 2 0 14
4 -4 16 8
10 0 -1 18
24.7785420704411
Sample Input 2 Sample Output 2
1
20 50
1
20 1 -20 100
609.47570824873

Please log in to submit a solution to this problem

Log in