声明一点:网上的解答 题目都没看清!!!!,害我整整2天改代码。。。。。
首先给定M,E ,然后给出其它区间的范围 注意 M<=tl[i]<=tr[i]<=E 所以根本不需要考虑区间超出【M,E】
然后注意一点 M不一定是0,可能是其它的数
#include<cstdio>
#include<algorithm>
using namespace std;
#define INF 0x3f3f3f3f
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define min(x,y) (((x)>(y))?(y):(x))
struct node
{
int le,ri,co;
}road[100100];
int dp[90000];
int d[100000<<2];
int N,M,E;
void build(int l,int r,int rt)
{
int m;
if(l==r)
{
if(l<M)
d[rt]=0;
else
d[rt]=INF;
return ;
}
m=(l+r)>>1;
build(lson);
build(rson);
d[rt]=min(d[rt<<1],d[rt<<1|1]);
}
void update(int k,int v,int l,int r,int rt)
{
int m;
if(k<l||k>r)
return ;
if(l==r)
{
d[rt]=v;
return ;
}
m=(l+r)>>1;
update(k,v,lson);
update(k,v,rson);
d[rt]=min(d[rt<<1],d[rt<<1|1]);
}
int query(int a,int b,int l,int r,int rt)
{
int m,res1,res2;
if(a==M-1)
return 0;
if(a<=l&&r<=b)
{
return d[rt];
}
if(b<l||a>r)
return INF;
m=(l+r)>>1;
res1=query(a,b,lson);
res2=query(a,b,rson);
return min(res1,res2);
}
int cmp(node a,node b)
{
return a.ri<b.ri;
}
int main()
{
int i,ans,max,res;
scanf("%d%d%d",&N,&M,&E);
M++;E++;
memset(dp,0x3f,sizeof(dp));
for(i=0;i<N;i++)
{
scanf("%d%d%d",&road[i].le,&road[i].ri,&road[i].co);
road[i].le++;
road[i].ri++;
}
build(M,E,1);
sort(road,road+N,cmp);
for(i=0;i<N;i++)
{
ans=min(query(road[i].le-1,road[i].ri,M,E,1)+road[i].co,dp[road[i].ri]);
dp[road[i].ri]=ans;
update(road[i].ri,ans,M,E,1);
}
if(dp[E]==INF)
printf("-1\n");
else
printf("%d\n",dp[E]);
return 0;
}