zoukankan      html  css  js  c++  java
  • Codefroces 822C Hacker, pack your bags!

    C. Hacker, pack your bags!
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    It's well known that the best way to distract from something is to do one's favourite thing. Job is such a thing for Leha.

    So the hacker began to work hard in order to get rid of boredom. It means that Leha began to hack computers all over the world. For such zeal boss gave the hacker a vacation of exactly x days. You know the majority of people prefer to go somewhere for a vacation, so Leha immediately went to the travel agency. There he found out that n vouchers left. i-th voucher is characterized by three integers li, ri, costi — day of departure from Vičkopolis, day of arriving back in Vičkopolis and cost of the voucher correspondingly. The duration of the i-th voucher is a value ri - li + 1.

    At the same time Leha wants to split his own vocation into two parts. Besides he wants to spend as little money as possible. Formally Leha wants to choose exactly two vouchers i and j (i ≠ j) so that they don't intersect, sum of their durations is exactly x and their total cost is as minimal as possible. Two vouchers i and j don't intersect if only at least one of the following conditions is fulfilled: ri < lj or rj < li.

    Help Leha to choose the necessary vouchers!

    Input

    The first line contains two integers n and x (2 ≤ n, x ≤ 2·105) — the number of vouchers in the travel agency and the duration of Leha's vacation correspondingly.

    Each of the next n lines contains three integers li, ri and costi (1 ≤ li ≤ ri ≤ 2·105, 1 ≤ costi ≤ 109) — description of the voucher.

    Output

    Print a single integer — a minimal amount of money that Leha will spend, or print  - 1 if it's impossible to choose two disjoint vouchers with the total duration exactly x.

    Examples
    Input
    4 5
    1 3 4
    1 2 5
    5 6 1
    1 2 4
    Output
    5
    Input
    3 2
    4 6 3
    2 4 1
    3 5 4
    Output
    -1
    Note

    In the first sample Leha should choose first and third vouchers. Hereupon the total duration will be equal to (3 - 1 + 1) + (6 - 5 + 1) = 5 and the total cost will be 4 + 1 = 5.

    In the second sample the duration of each voucher is 3 therefore it's impossible to choose two vouchers with the total duration equal to 2.

    容器解题

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    #define lowbit(x) x&(-x)
    #define max(x,y) (x>y?x:y)
    #define min(x,y) (x<y?x:y)
    #define mem(a) (memset(a,0,sizeof(a)))
    const int inf=0x7fffffff;
    vector<pair<int,int> >v[200006];
    int main()
    {
        int l,r,c,n,x;
        ll minn=inf;
        cin>>n>>x;
        for(int i=0;i<n;i++)
        {
            scanf("%d%d%d",&l,&r,&c);
            if((r-l+1)>x) continue;
            v[r-l+1].push_back(make_pair(l,c));
        }
        for(int i=0;i<=x;i++)sort(v[i].begin(),v[i].end());
        for(int d=1;d<x;d++)
        {
            ll temp=inf;
            for(int i=0,j=0;i<v[x-d].size();i++)
            {
                while(j<v[d].size() && (v[d][j].first+d-1)<v[x-d][i].first)
                {
                    temp=min(temp,v[d][j].second);
                    j++;
                }
                if(temp!=inf) minn=min(minn,temp+v[x-d][i].second);
            }
        }
        if(minn==inf) printf("-1
    ");
        else printf("%I64d
    ",minn);
        return 0;
    }
  • 相关阅读:
    Linux主机肉鸡木马minerd导致CPU跑满
    阿里云Redis加速Typecho博客访问
    啪啪啪!敲代码时你喜欢听什么音乐?
    排列组合的去重问题
    01背包变形
    判断两个线段是否相交
    Centos搭建SVN服务器三步曲
    nodejs for centos配置
    AngularJS 授权 + Node.js REST api
    1082 射击比赛 (20 分)C语言
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7153986.html
Copyright © 2011-2022 走看看