시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB94337.500%

문제

Byteasar celebrates his thirteenth birthday. One of the gifts from his parents is a brand new computer! He hastily unwrapped his gift and started reading the computer's manual. It turned out that the computer has $m$ processors. Byteasar is very happy -- at last he is able to execute many tasks in parallel!

He swiftly prepared a list of $n$ tasks (numbered $1$ through $n$) that he plans to execute on his new computer. A processor can execute no more than a single task at once. Task $i$ takes $c_i$ seconds to complete and it is forbidden to start its execution less than $p_i$ seconds since the gift's unwrapping  or complete it later than $k_i$ seconds after the gift's unwrapping. Every task's execution can be interrupted arbitrarily many times and it can be moved between different processors. However, it cannot be executed on two or more processors simultaneously. Moving a task between processors takes negligible time. Is it possible to schedule the execution of tasks so that each task is executed and completed within its timeframe? In other words, does there exist a strategy of starting, interrupting and moving tasks between processors that would allow Byteasar achieve his goal?

입력

The first line of the input contains two integers $n$ and $m$ ($1 \le n, m \le 100$) denoting the number of tasks and the number of processors, respectively. The following $n$ lines describe Byteasar's tasks. $i$-th of them contains a description of task $i$: three integers $p_i$, $k_i$ and $c_i$ ($0 \le p_i < k_i \le 10^6; 1 \le c_i \le k_i - p_i$) denoting the beginning and the end of the time interval when it is allowed to execute the $i$-th task (expressed in seconds since the gift's unwrapping), and the time it takes to complete this task, respectively.

출력

If it is possible to complete all the tasks within their respective timeframes, print YES. Otherwise, print NO.

예제 입력 1

3 2
3 8 3
2 5 2
3 7 3

예제 출력 1

YES

예제 입력 2

2 1
0 1 1
0 1 1

예제 출력 2

NO