CF453E.Little Pony and Lord Tirek

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Lord Tirek is a centaur and the main antagonist in the season four finale episodes in the series "My Little Pony: Friendship Is Magic". In "Twilight's Kingdom" (Part 1), Tirek escapes from Tartarus and drains magic from ponies to grow stronger.

The core skill of Tirek is called Absorb Mana. It takes all mana from a magic creature and gives them to the caster.

Now to simplify the problem, assume you have nn ponies (numbered from 1 to nn ). Each pony has three attributes:

  • sis_{i} : amount of mana that the pony has at time 0;
  • mim_{i} : maximum mana that the pony can have;
  • rir_{i} : mana regeneration per unit time.

Lord Tirek will do mm instructions, each of them can be described with three integers: ti,li,rit_{i},l_{i},r_{i} . The instruction means that at time tit_{i} , Tirek will use Absorb Mana on ponies with numbers from lil_{i} to rir_{i} (both borders inclusive). We'll give you all the mm instructions in order, count how much mana Tirek absorbs for each instruction.

输入格式

The first line contains an integer nn ( 1<=n<=1051<=n<=10^{5} ) — the number of ponies. Each of the next nn lines contains three integers si,mi,ris_{i},m_{i},r_{i} (0<=si<=mi<=105; 0<=ri<=105)(0<=s_{i}<=m_{i}<=10^{5}; 0<=r_{i}<=10^{5}) , describing a pony.

The next line contains an integer mm ( 1<=m<=1051<=m<=10^{5} ) — the number of instructions. Each of the next mm lines contains three integers ti,li,rit_{i},l_{i},r_{i} (0<=ti<=109; 1<=li<=ri<=n)(0<=t_{i}<=10^{9}; 1<=l_{i}<=r_{i}<=n) , describing an instruction of Lord Tirek. The instructions are given in strictly increasing order of tit_{i} (all tit_{i} are distinct).

输出格式

For each instruction, output a single line which contains a single integer, the total mana absorbed in this instruction.

输入输出样例

  • 输入#1

    5
    0 10 1
    0 12 1
    0 20 1
    0 12 1
    0 10 1
    2
    5 1 5
    19 1 5
    

    输出#1

    25
    58
    

说明/提示

Every pony starts with zero mana. For the first instruction, each pony has 5 mana, so you get 25 mana in total and each pony has 0 mana after the first instruction.

For the second instruction, pony 3 has 14 mana and other ponies have mana equal to their mim_{i} .

首页