青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

pku 1203 Timetable 拆點(diǎn)+DP最短路

題意:
Timetable
Time Limit: 3000MS  Memory Limit: 65536K
Total Submissions: 281  Accepted: 86

Description

You are the owner of a railway system between n cities, numbered by integers from 1 to n. Each train travels from the start station to the end station according to a very specific timetable (always on time), not stopping anywhere between. On each station a departure timetable is available. Unfortunately each timetable contains only direct connections. A passenger that wants to travel from city p to city q is not limited to direct connections however -- he or she can change trains. Each change takes zero time, but a passenger cannot change from one train to the other if it departs before the first one arrives. People would like to have a timetable of all optimal connections. A connection departing from city p at A o'clock and arriving in city q at B o'clock is called optimal if there is no connection that begins in p not sooner than at A and ends in q not later than at B. We are only interested in connections that can be completed during same day.
Write a program that:
reads the number n and departure timetable for each of n cities from the standard input,
creates a timetable of optimal connections from city 1 to city n,
writes the answer to the standard output.
Input

The first line of the input contains an integer n (2 <= n <= 100000). The following lines contain n timetables for cities 1, 2, ..., n respectively.

The first line of the timetable description contains only one integer m. Each of the following m lines corresponds to one position in the timetable and contains: departure time A, arrival time B (A < B) and destination city number t (1 <= t <= n) separated by single spaces. Departure time A and arrival time B are written in format hh:mm, where hh are two digits representing full hours (00 <= hh <= 23) and mm are two digits representing minutes (00 <= mm <= 59). Positions in the timetable are given in non-decreasing order according to the departure times. The number of all positions in all timetables does not exceed 1000000.

Output

The first line of the output contains an integer r -- the number of positions in the timetable being the solution. Each of the following r lines contains a departure time A and an arrival time B separated by single space. The time format should be like in the input and positions in the timetable should be ordered increasingly according to the departure times. If there is more then one optimal connection with the same departure and arrival time, your program should output just one.
Sample Input

3
3
09:00 15:00 3
10:00 12:00 2
11:00 20:00 3
2
11:30 13:00 3
12:30 14:00 3
0
Sample Output

2
10:00 14:00
11:00 20:00
Hint

Huge input data, use scanf instead of cin to avoid time limit exceed.
Source

Southwestern Europe 2002

代碼:

  1Source Code
  2
  3Problem: 1203  User: yzhw 
  4Memory: 36324K  Time: 1485MS 
  5Language: G++  Result: Accepted 
  6
  7Source Code 
  8# include <cstdio>
  9# include <set>
 10# include <vector>
 11# include <cstring>
 12# include <iostream>
 13# include <algorithm>
 14using namespace std;
 15struct node
 16{
 17    char s[10],e[10];
 18    int nxt;
 19}
;
 20int n,m;
 21vector<node> data[100001];
 22vector<int> l[100001];
 23int s[100001];
 24int g[1000005],nxt[2000005],v[2000005],co=0,dp[1000005];
 25int change(char *ori)
 26{
 27    char tmp[10];
 28    strcpy(tmp,ori);
 29    return atoi(strtok(tmp,":"))*60+atoi(strtok(NULL,":"));
 30}

 31void addedge(int s,int e)
 32{
 33    v[co]=e;
 34    nxt[co]=g[s];
 35    g[s]=co++;
 36}

 37int solve(int pos)
 38{
 39    if(dp[pos]!=-1return dp[pos];
 40    else if(g[pos]==-1&&pos>=s[n-1]) return dp[pos]=l[n][pos-s[n-1]];
 41    else
 42    {
 43        dp[pos]=(pos>=s[n-1]?l[n][pos-s[n-1]]:0xfffffff);
 44        for(int p=g[pos];p!=-1;p=nxt[p])
 45            dp[pos]=min(dp[pos],solve(v[p]));
 46        return dp[pos];
 47        
 48    }

 49}

 50void print(int time)
 51{
 52    printf("%s%d:%s%d",time/60<10?"0":"",time/60,time%60<10?"0":"",time%60);
 53}

 54int main()
 55{
 56  //  freopen("in11","r",stdin);
 57  //  freopen("ans.txt","w",stdout);
 58    scanf("%d",&n);
 59    s[0]=0;
 60    for(int i=1;i<=n;i++)
 61    {
 62        scanf("%d",&m);
 63        while(m--)
 64        {
 65            node tmp;
 66            scanf("%s%s%d",tmp.s,tmp.e,&tmp.nxt);
 67            data[i].push_back(tmp);
 68            l[i].push_back(change(tmp.s));
 69            if(tmp.nxt==n) l[n].push_back(change(tmp.e));
 70        }

 71        sort(l[i].begin(),l[i].end());
 72        vector<int>::iterator end=unique(l[i].begin(),l[i].end());
 73        while(l[i].end()!=end) l[i].pop_back();
 74        s[i]=s[i-1]+l[i].size();
 75    }

 76    memset(g,-1,sizeof(g));
 77    memset(dp,-1,sizeof(dp));
 78    co=0;
 79    for(int i=1;i<=n;i++)
 80    {
 81        for(int j=s[i-1];j<s[i]-1;j++)
 82             addedge(j,j+1);
 83        for(int j=0;j<data[i].size();j++)
 84            if(lower_bound(l[data[i][j].nxt].begin(),l[data[i][j].nxt].end(),change(data[i][j].e))!=l[data[i][j].nxt].end())
 85                addedge(s[i-1]+lower_bound(l[i].begin(),l[i].end(),change(data[i][j].s))-l[i].begin(),s[data[i][j].nxt-1]+lower_bound(l[data[i][j].nxt].begin(),l[data[i][j].nxt].end(),change(data[i][j].e))-l[data[i][j].nxt].begin());
 86
 87    }

 88    vector<pair<int,int> >ans;
 89    for(int i=s[1]-1;i>=0;i--)
 90        if(solve(i)!=0xfffffff&&(ans.empty()||solve(i)<ans.back().second))
 91            ans.push_back(make_pair(l[1][i],solve(i)));
 92    printf("%d\n",ans.size());
 93    for(int i=ans.size()-1;i>=0;i--)
 94    {
 95        print(ans[i].first);
 96        printf(" ");
 97        print(ans[i].second);
 98        printf("\n");
 99    }

100//    system("pause");
101    return 0;
102    
103}

104
105

posted on 2010-12-09 21:25 yzhw 閱讀(479) 評(píng)論(0)  編輯 收藏 引用 所屬分類: DP 、graph

<2010年12月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

導(dǎo)航

統(tǒng)計(jì)

公告

統(tǒng)計(jì)系統(tǒng)

留言簿(1)

隨筆分類(227)

文章分類(2)

OJ

最新隨筆

搜索

積分與排名

最新評(píng)論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美国产乱视频| 先锋影音国产精品| 国产日韩欧美在线| 欧美精品 日韩| 久久综合九色综合久99| 午夜精品福利电影| 99热在线精品观看| 亚洲成色777777在线观看影院| 亚洲欧美中文在线视频| 99国产精品99久久久久久| 影音先锋欧美精品| 国一区二区在线观看| 国产目拍亚洲精品99久久精品| 欧美日韩国产影院| 欧美精品91| 欧美激情一区二区三区不卡| 狂野欧美一区| 久久一二三国产| 久久久综合香蕉尹人综合网| 久久精品99国产精品日本| 欧美一级大片在线免费观看| 亚洲欧美视频在线观看视频| 亚洲一区二区精品| 亚洲视频图片小说| 亚洲香蕉网站| 亚洲一区尤物| 欧美亚洲三级| 久久狠狠婷婷| 在线中文字幕一区| 亚洲日韩视频| 亚洲人成亚洲人成在线观看| 亚洲国产日韩在线一区模特| 亚洲第一在线| 欧美 日韩 国产精品免费观看| 99精品国产99久久久久久福利| 久久精品一区| 久久国产精品久久久| 久久成人18免费观看| 欧美制服丝袜| 久久青草久久| 欧美99在线视频观看| 欧美激情一区二区久久久| 亚洲高清免费在线| 亚洲精品综合精品自拍| 亚洲视频在线一区| 午夜精品在线| 久久久青草青青国产亚洲免观| 久久婷婷综合激情| 欧美国产综合视频| 国产精品成人va在线观看| 国产精品视频你懂的| 国产综合欧美在线看| 亚洲国产精品电影| 夜久久久久久| 午夜伦理片一区| 久久亚洲色图| 91久久综合| 亚洲一区二区在线| 久久久噜久噜久久综合| 欧美激情日韩| 国产欧美日本一区视频| 1204国产成人精品视频| 夜夜嗨av一区二区三区网站四季av| 亚洲制服av| 免费欧美日韩国产三级电影| 亚洲精品乱码久久久久久| 亚洲香蕉在线观看| 久久一本综合频道| 国产精品成人一区二区艾草| 悠悠资源网亚洲青| 亚洲天堂成人在线视频| 久久婷婷久久| 99天天综合性| 麻豆成人91精品二区三区| 欧美午夜三级| 在线观看日韩av先锋影音电影院 | 99pao成人国产永久免费视频| 亚洲一区中文| 欧美成人高清| 亚洲伊人网站| 欧美福利视频在线| 国产一区二区精品久久99| 亚洲精品在线观看视频| 久久精品国产亚洲aⅴ| 亚洲人成网在线播放| 校园激情久久| 欧美午夜精品久久久久久久 | 国产农村妇女毛片精品久久麻豆 | 黄色一区三区| 亚洲天堂黄色| 亚洲第一中文字幕| 欧美在线1区| 国产精品福利在线观看网址| 最新日韩中文字幕| 久久影院午夜片一区| 亚洲天堂av在线免费| 欧美电影资源| 在线免费观看欧美| 久久se精品一区二区| 夜夜嗨一区二区| 欧美寡妇偷汉性猛交| 伊人成综合网伊人222| 欧美伊久线香蕉线新在线| 99精品国产99久久久久久福利| 蜜桃av一区| 在线免费观看日本欧美| 久久久一区二区| 先锋亚洲精品| 一区二区三区四区国产| 欧美激情视频一区二区三区免费| 久久全球大尺度高清视频| 欧美久久在线| 在线日韩精品视频| 久久伊人免费视频| 久久国产88| 国产一区二区在线免费观看| 欧美一二三区精品| 亚洲午夜激情| 国产精品免费网站在线观看| 亚洲一区在线直播| 99国产精品久久久久久久久久| 欧美人成免费网站| 亚洲麻豆国产自偷在线| 亚洲国产精品久久| 欧美寡妇偷汉性猛交| 99re8这里有精品热视频免费 | 久久精品一区蜜桃臀影院| 国产亚洲欧美日韩美女| 久久久久久夜| 久久国产欧美日韩精品| 狠狠色丁香婷婷综合影院| 久久天天躁夜夜躁狠狠躁2022 | 亚洲欧美久久久久一区二区三区| 久久精品水蜜桃av综合天堂| 欧美性猛交xxxx乱大交蜜桃 | 久久美女性网| 欧美一区二区三区另类| 国产在线视频欧美一区二区三区| 久久激情中文| 久久久久国产一区二区| 亚洲国产成人高清精品| 91久久在线播放| 国产精品www网站| 欧美一区二区观看视频| 久久不射中文字幕| 亚洲电影下载| 亚洲欧洲一区二区三区在线观看| 欧美日韩免费高清| 欧美一区免费视频| 久久女同精品一区二区| 亚洲国产日本| 99综合电影在线视频| 国产精品一区免费观看| 久久躁日日躁aaaaxxxx| 美国成人毛片| 亚洲综合首页| 久久九九久久九九| 亚洲伦理精品| 亚洲一区日韩| 在线不卡亚洲| 99亚洲视频| 黄色成人精品网站| 久久人人爽人人爽| 国产精品久线观看视频| 亚洲品质自拍| 国产精品久久久久久久午夜 | 性做久久久久久久久| 亚洲第一精品久久忘忧草社区| 亚洲国产91| 国产区亚洲区欧美区| 欧美丰满高潮xxxx喷水动漫| 欧美视频在线不卡| 久久亚洲综合| 欧美图区在线视频| 蜜月aⅴ免费一区二区三区| 欧美日韩在线另类| 麻豆精品91| 国产精品毛片高清在线完整版| 美女精品自拍一二三四| 国产精品黄视频| 亚洲高清在线精品| 国产欧美一级| 亚洲乱码国产乱码精品精98午夜| 国内精品视频在线播放| 夜夜嗨av一区二区三区| 亚洲国产精品嫩草影院| 亚洲男人第一av网站| aa级大片欧美三级| 老巨人导航500精品| 久久国产欧美| 国产精品扒开腿做爽爽爽视频| 欧美成人免费在线| 欧美亚洲免费| 欧美一区国产在线| 日韩亚洲综合在线| 欧美中文字幕在线视频| 亚洲欧美日韩国产中文| 欧美第一黄色网| 免费日韩av片| 国产一区自拍视频|