shyam1909's blog

By shyam1909, 13 months ago, In English

Given an array A of N elements representing the monsters and an array B of Q elements representing the heros.

The i-th type of monster is represented by A[i][0], A[i][1], and A[i][2] which means a monster of the i-th type is present at each integer co-ordinate from A[i][0] to A[i][1] and having a strength of A[i][2].

The i-th type of hero is represented by B[i][0] and B[i][1] which means a hero of strength B[i][1] will appear at the integer point B[i][0] after i seconds. When the i-th hero appears it will destroy each and every monster present at B[i][0] and having a strength less than B[i][1].

For each i you have to determine the number of monsters left after the i-th hero has completed their task.

Constrains:
  • Vote: I like it
  • 0
  • Vote: I do not like it