CF313D.Ilya and Roads

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Everything is great about Ilya's city, except the roads. The thing is, the only ZooVille road is represented as nn holes in a row. We will consider the holes numbered from 1 to nn , from left to right.

Ilya is really keep on helping his city. So, he wants to fix at least kk holes (perharps he can fix more) on a single ZooVille road.

The city has mm building companies, the ii -th company needs cic_{i} money units to fix a road segment containing holes with numbers of at least lil_{i} and at most rir_{i} . The companies in ZooVille are very greedy, so, if they fix a segment containing some already fixed holes, they do not decrease the price for fixing the segment.

Determine the minimum money Ilya will need to fix at least kk holes.

输入格式

The first line contains three integers n,m,kn,m,k (1<=n<=300,1<=m<=105,1<=k<=n)(1<=n<=300,1<=m<=10^{5},1<=k<=n) . The next mm lines contain the companies' description. The ii -th line contains three integers li,ri,cil_{i},r_{i},c_{i} (1<=li<=ri<=n,1<=ci<=109)(1<=l_{i}<=r_{i}<=n,1<=c_{i}<=10^{9}) .

输出格式

Print a single integer — the minimum money Ilya needs to fix at least kk holes.

If it is impossible to fix at least kk holes, print -1.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    10 4 6
    7 9 11
    6 9 13
    7 7 7
    3 5 6
    

    输出#1

    17
    
  • 输入#2

    10 7 1
    3 4 15
    8 9 8
    5 6 8
    9 10 6
    1 4 2
    1 4 10
    8 10 13
    

    输出#2

    2
    
  • 输入#3

    10 1 9
    5 10 14
    

    输出#3

    -1
    
首页