Codeforces 854D Jury Meeting【思维+前后缀和+二分】

D. Jury Meeting
time limit per test
1 second
memory limit per test
512 megabytes
input
standard input
output
standard output

Country of Metropolia is holding Olympiad of Metrpolises soon. It mean that all jury members of the olympiad should meet together in Metropolis (the capital of the country) for the problem preparation process.

There are n + 1 cities consecutively numbered from 0 to n. City 0 is Metropolis that is the meeting point for all jury members. For each city from 1 to n there is exactly one jury member living there. Olympiad preparation is a long and demanding process that requires k days of work. For all of these k days each of the n jury members should be present in Metropolis to be able to work on problems.

You know the flight schedule in the country (jury members consider themselves important enough to only use flights for transportation). All flights in Metropolia are either going to Metropolis or out of Metropolis. There are no night flights in Metropolia, or in the other words, plane always takes off at the same day it arrives. On his arrival day and departure day jury member is not able to discuss the olympiad. All flights in Megapolia depart and arrive at the same day.

Gather everybody for k days in the capital is a hard objective, doing that while spending the minimum possible money is even harder. Nevertheless, your task is to arrange the cheapest way to bring all of the jury members to Metrpolis, so that they can work together for kdays and then send them back to their home cities. Cost of the arrangement is defined as a total cost of tickets for all used flights. It is allowed for jury member to stay in Metropolis for more than k days.

Input

The first line of input contains three integers nm and k (1 ≤ n ≤ 1050 ≤ m ≤ 1051 ≤ k ≤ 106).

The i-th of the following m lines contains the description of the i-th flight defined by four integers difiti and ci (1 ≤ di ≤ 1060 ≤ fi ≤ n0 ≤ ti ≤ n1 ≤ ci ≤ 106, exactly one of fi and ti equals zero), the day of departure (and arrival), the departure city, the arrival city and the ticket cost.

Output

Output the only integer that is the minimum cost of gathering all jury members in city 0 for k days and then sending them back to their home cities.

If it is impossible to gather everybody in Metropolis for k days and then send them back to their home cities, output "-1" (without the quotes).

Examples
input
2 6 5
1 1 0 5000
3 2 0 5500
2 2 0 6000
15 0 2 9000
9 0 1 7000
8 0 2 6500
output
24500
input
2 4 5
1 2 0 5000
2 1 0 4500
2 1 0 3000
8 0 1 6000
output
-1
Note

The optimal way to gather everybody in Metropolis in the first sample test is to use flights that take place on days 128 and 9. The only alternative option is to send jury member from second city back home on day 15, that would cost 2500 more.

In the second sample it is impossible to send jury member from city 2 back home from Metropolis.


题目大意:


现在有N个人在N个城市中,编号为1~N,现在我们要聚集这些人到首都0号城市, 一起用K天来做一个工作,我们现在给出M个航班,每个航班四个信息,出发的时间,出发的是城市,到达的城市以及航班的花费。


我们现在要求这N个人一起到城市0然后工作完之后都回家的最小花费。


思路:


①首先我们将M个航班按照时间从小到大排序一下,这样在前边的就是出发时间早的,否则就是出发时间晚的。


②那么我们不难想到,O(m)枚举一个聚集到一起的一个时间点,那么这个时间之前我们的任务就是将这N个人飞到首都去,这里每个人的问题都是单独的,所以从当前枚举的聚集点之前的部分,我们只要维护每个人到达首都的最小花费即可,然后将其加和,维护一个前缀和,设定为L【i】,表示以第i个航班结束为止聚集到一起的最小花费,对应反过去搞,就是R【i】,表示以第i天为结束工作的日子,之后将所有人返回各个城市的最小花费。


③那么我们O(m)枚举这样的断点,然后二分回家的那个点维护一个最小权值和即可。


Ac代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
#define ll __int64
struct node
{
    ll d,from,to,val;
} a[250000];
ll vis[250000];
ll L[250000];
ll R[250000];
ll cmp(node a,node b)
{
    return a.d<b.d;
}
int main()
{
    ll n,m,k;
    while(~scanf("%I64d%I64d%I64d",&n,&m,&k))
    {
        memset(vis,0,sizeof(vis));
        memset(L,-1,sizeof(L));
        memset(R,-1,sizeof(R));
        for(ll i=1; i<=m; i++)scanf("%I64d%I64d%I64d%I64d",&a[i].d,&a[i].from,&a[i].to,&a[i].val);
        sort(a+1,a+1+m,cmp);
        ll sum=0;
        ll tot=0;
        for(ll i=1; i<=m; i++)
        {
            if(a[i].from==0)continue;
            if(vis[a[i].from]==0)
            {
                tot+=a[i].val;
                sum++;
                vis[a[i].from]=a[i].val;
            }
            else
            {
                if(vis[a[i].from]>a[i].val)
                {
                    tot-=vis[a[i].from];
                    tot+=a[i].val;
                    vis[a[i].from]=a[i].val;
                }
            }
            if(sum==n)L[i]=tot;
        }
        sum=0;
        tot=0;
        memset(vis,0,sizeof(vis));
        for(ll i=m; i>=1; i--)
        {
            if(a[i].from!=0)continue;
            if(vis[a[i].to]==0)
            {
                tot+=a[i].val;
                sum++;
                vis[a[i].to]=a[i].val;
            }
            else
            {
                if(vis[a[i].to]>a[i].val)
                {
                    tot-=vis[a[i].to];
                    tot+=a[i].val;
                    vis[a[i].to]=a[i].val;
                }
            }
            if(sum==n)R[i]=tot;
        }
        ll zz=1000000000000000000;
        for(ll i=m;i>=1;i--)
        {
            if(R[i]==-1)continue;
            else
            {
                if(R[i+1]!=-1)
                R[i]=min(R[i],R[i+1]);
            }
        }
        for(ll i=1;i<=m;i++)
        {
            if(L[i]==-1)continue;
            else
            {
                ll pos=-1;
                ll day=a[i].d+k+1;
                ll l=i+1;
                ll r=m;
                while(r-l>=0)
                {
                    ll mid=(l+r)/2;
                    if(a[mid].d>=day)
                    {
                        r=mid-1;
                        pos=mid;
                    }
                    else l=mid+1;
                }
                if(pos==-1)continue;
                else if(R[pos]!=-1)zz=min(zz,R[pos]+L[i]);
            }
        }
        if(zz==1000000000000000000)printf("-1\n");
        else
        printf("%I64d\n",zz);
    }
}











  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值