#P4766. [CERC2014] Outer space invaders

    ID: 5513 远端评测题 2000ms 125MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>动态规划 DP2014离散化O2优化区间 DP

[CERC2014] Outer space invaders

题目描述

The aliens from outer space have (finally!) invaded Earth. Defend yourself, or be disintegrated!

Or assimilated. Or eaten. We are not yet sure.

The aliens follow a known attack pattern. There are nn attackers, the ithi-th one appears at time aia_i, at distance did_i from you. He must be destroyed no later than at time bib_i, or else he will fire his weapon, which will definitely end the fight.

Your weapon is an area-blaster, which can be set to any given power. If fired with power RR,it momentarily destroys all aliens at distance RR or smaller. It also consumes RR fuel cells.

Determine the minimal cost (measured in fuel cells) of destroying all the aliens, without being killed.

输入格式

The first line of input contains the number of test cases TT. The descriptions of the test cases follow:

Each test case starts with a line containing the number of aliens n(1n300)n(1 \le n \le 300). Of the next nn lines, the ithi-th one contains three integers $a_i, b_i, d_i, (1 \le a_i < b_i \le 10 000, 1 \le d_i \le 10 000)$.

The ithi-th alien appears at time aia_i, is idle until bib_i, and his distance from you is did_i.

输出格式

For each test case, output one line containing the minimum number of cells needed to destroy all the aliens.

1
3
1 4 4
4 7 5
3 4 7

7