Baltic OI '04 P3 - Sequence

View as PDF

Submit solution

Points: 30 (partial)
Time limit: 2.0s
Memory limit: 512M

Problem types
Baltic Olympiad in Informatics: 2004 Day 1, Problem 3

A number sequence is given. Your task is to construct an increasing sequence that approximates the given one in the best way. The best approximating sequence is the sequence with the least total deviation from the given sequence.

More precisely, let t1,t2,,tN be the given sequence. Your task is to construct an increasing sequence z1<z2<<zN.

The total deviation, defined as |t1z1|+|t2z2|++|tNzN|, should be minimized.

Constraints

1N106

0ti,|zi|2×109

Input Specification

The first line of input contains an integer N.

Each of the next N lines describes the given sequence t, where the i+1th line corresponds to ti.

Output Specification

The first line of output must contain the single integer – the minimal possible total deviation.

Each of the next N lines must describe the best approximating sequence z, where the i+1th line corresponds to zi.

If there are several solutions, your program can output any valid sequence with the least total deviation.

Sample Input

Copy
7
9
4
8
20
14
15
18

Sample Output

Copy
13
6
7
8
13
14
15
18

Comments

There are no comments at the moment.