码迷,mamicode.com
首页 > 其他好文 > 详细

【UVA1723】Intervals

时间:2019-07-31 18:27:26      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:cstring   uva   end   tor   ace   int   back   size   names   

题面

https://www.luogu.org/problem/UVA1723

题解

#include<cstdio>
#include<iostream>
#include<cstring>
#include<vector>
#include<queue>
#define ri register int
#define N 50500
using namespace std;

int T,n;
int d[N];
vector<int> to[N],len[N];
bool inq[N];

void add_edge(int a,int b,int c) {
  to[a].push_back(b); 
  len[a].push_back(c);
}

void spfa() {
  memset(d,-1,sizeof(d));
  memset(inq,0,sizeof(inq));
  d[0]=0;
  queue<int> q;
  q.push(0); inq[0]=1;
  while (!q.empty()) {
    int x=q.front(); q.pop(); inq[x]=0;
    for (ri i=0;i<to[x].size();i++) {
      int y=to[x][i];
      if (d[y]<d[x]+len[x][i]) {
        d[y]=d[x]+len[x][i];
        if (!inq[y]) {
          inq[y]=1;
          q.push(y);
        }
      }
    }
  }
}

int main(){
  int a,b,c;
  scanf("%d",&T);
  while (T--)  {
    scanf("%d",&n);
    for (ri i=0;i<N;i++) to[i].clear(),len[i].clear();
    int maxb=0;
    for (ri i=1;i<=n;i++) {
      scanf("%d %d %d",&a,&b,&c);
      a++; b++;
      if (b>maxb) maxb=b;
      add_edge(a-1,b,c);
    }
    for (ri i=0;i<N-1;i++) {
      add_edge(i,i+1,0);
      add_edge(i+1,i,-1);
    }
    spfa();
    if (!T) cout<<d[N-1]; else cout<<d[N-1]<<endl;
    puts("");
  }
}

 

【UVA1723】Intervals

标签:cstring   uva   end   tor   ace   int   back   size   names   

原文地址:https://www.cnblogs.com/shxnb666/p/11277975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!