#P5240. Exam

    ID: 4113 远端评测题 1000ms 32MiB 尝试: 0 已通过: 0 难度: (无) 上传者: 标签>The 2015 ACM-ICPC China Shanghai Metropolitan Programming Contest

Exam

Problem Description

As this term is going to end, DRD needs to prepare for his final exams.

DRD has $n$ exams. They are all hard, but their difficulties are different. DRD will spend at least $r_i$ hours on the $i$-th course before its exam starts, or he will fail it. The $i$-th course's exam will take place $e_i$ hours later from now, and it will last for $l_i$ hours. When DRD takes an exam, he must devote himself to this exam and cannot (p)review any courses. Note that DRD can review for discontinuous time.

So he wonder whether he can pass all of his courses.

No two exams will collide.

Input

First line: an positive integer $T \leq 20$ indicating the number of test cases.
There are T cases following. In each case, the first line contains an positive integer $n \leq 10^5$, and $n$ lines follow. In each of these lines, there are 3 integers $r_i, e_i, l_i$, where $0 \leq r_i, e_i, l_i \leq 10^9$.

Output

For each test case: output ''Case #x: ans'' (without quotes), where $x$ is the number of test cases, and $ans$ is ''YES'' (without quotes) if DRD can pass all the courses, and otherwise ''NO'' (without quotes).

2 3 3 2 2 5 100 2 7 1000 2 3 3 10 2 5 100 2 7 1000 2
Case #1: NO Case #2: YES