• <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>
            隨筆 - 87  文章 - 279  trackbacks - 0
            <2006年3月>
            2627281234
            567891011
            12131415161718
            19202122232425
            2627282930311
            2345678

            潛心看書研究!

            常用鏈接

            留言簿(19)

            隨筆分類(81)

            文章分類(89)

            相冊

            ACM OJ

            My friends

            搜索

            •  

            積分與排名

            • 積分 - 217774
            • 排名 - 117

            最新評論

            閱讀排行榜

            評論排行榜


            Always On the Run

            Time limit: 1 Seconds?? Memory limit: 32768K??
            Total Submit: 125?? Accepted Submit: 70??

            Screeching tires. Searching lights. Wailing sirens. Police cars everywhere. Trisha Quickfinger did it again! Stealing the `Mona Lisa' had been more difficult than planned, but being the world's best art thief means expecting the unexpected. So here she is, the wrapped frame tucked firmly under her arm, running to catch the northbound metro to Charles-de-Gaulle airport.

            But even more important than actually stealing the painting is to shake off the police that will soon be following her. Trisha's plan is simple: for several days she will be flying from one city to another, making one flight per day. When she is reasonably sure that the police has lost her trail, she will fly to Atlanta and meet her `customer' (known only as Mr. P.) to deliver the painting.

            Her plan is complicated by the fact that nowadays, even when you are stealing expensive art, you have to watch your spending budget. Trisha therefore wants to spend the least money possible on her escape flights. This is not easy, since airlines prices and flight availability vary from day to day. The price and availability of an airline connection depends on the two cities involved and the day of travel. Every pair of cities has a `flight schedule' which repeats every few days. The length of the period may be different for each pair of cities and for each direction.

            Although Trisha is a good at stealing paintings, she easily gets confused when booking airline flights. This is where you come in.


            Input

            The input contains the descriptions of several scenarios in which Trisha tries to escape. Every description starts with a line containing two integers n and k. n is the number of cities through which Trisha's escape may take her, and k is the number of flights she will take. The cities are numbered 1, 2, ..., n, where 1 is Paris, her starting point, and n is Atlanta, her final destination. The numbers will satisfy 2 <= n <= 10 and 1 <= k <= 1000.
            Next you are given n(n - 1) flight schedules, one per line, describing the connection between every possible pair of cities. The first n - 1 flight schedules correspond to the flights from city 1 to all other cities (2, 3, ..., n), the next n - 1 lines to those from city 2 to all others (1, 3, 4, ..., n), and so on.

            The description of the flight schedule itself starts with an integer d, the length of the period in days, with 1 <= d <= 30. Following this are d non-negative integers, representing the cost of the flight between the two cities on days 1, 2, ..., d. A cost of 0 means that there is no flight between the two cities on that day.

            So, for example, the flight schedule ``3 75 0 80'' means that on the first day the flight costs 75, on the second day there is no flight, on the third day it costs 80, and then the cycle repeats: on the fourth day the flight costs 75, there is no flight on the fifth day, etc.

            The input is terminated by a scenario having n = k = 0.


            Output

            For each scenario in the input, first output the number of the scenario, as shown in the sample output. If it is possible for Trisha to travel k days, starting in city 1, each day flying to a different city than the day before, and finally (after k days) arriving in city n, then print ``The best flight costs x.'', where x is the least amount that the k flights can cost.

            If it is not possible to travel in such a way, print ``No flight possible.''.

            Print a blank line after each scenario.


            Sample Input

            3 6
            2 130 150
            3 75 0 80
            7 120 110 0 100 110 120 0
            4 60 70 60 50
            3 0 135 140
            2 70 80
            2 3
            2 0 70
            1 80
            0 0


            Sample Output

            Scenario #1
            The best flight costs 460.

            Scenario #2
            No flight possible.

            #include?<iostream>
            using?namespace?std;

            const?int?MAXN?=?11;
            const?int?MAXM?=?1001;
            const?int?INF?=??2000000000;

            int?n,?m;
            int?a[MAXN][MAXN][MAXM];
            int?d[MAXM][MAXN];
            int?num[MAXN][MAXN];

            int?main()
            {
            ????
            int?i,?j,?k,?l;
            ????
            int?t,?t1;
            ????
            int?tmp?=?0;
            ????
            while?(scanf("%d%d",?&n,?&m)?!=?EOF)?{
            ????????
            if?(n?==?0?&&?m?==?0)?break;
            ????????memset(a,?
            0,?sizeof(a));
            ????????
            for?(i=1;?i<=n;?i++)?{
            ????????????
            for?(j=1;?j<=n;?j++)?{
            ????????????????
            if?(i?!=?j)?{
            ????????????????????scanf(
            "%d",?&num[i][j]);
            ????????????????????
            for?(k=1;?k<=num[i][j];?k++)?{
            ????????????????????????scanf(
            "%d",?&a[i][j][k]);
            ????????????????????}

            ????????????????}

            ????????????}

            ????????}

            ????????
            for?(i=1;?i<=m;?i++)?{
            ????????????
            for?(j=1;?j<=n;?j++)?{
            ????????????????d[i][j]?
            =?INF;
            ????????????}

            ????????}

            ????????
            for?(j=1;?j<=n;?j++)?{
            ????????????
            if?(a[1][j][1]?>?0)?{
            ????????????????d[
            1][j]?=?a[1][j][1];
            ????????????}

            ????????}

            ????????
            for?(i=2;?i<=m;?i++)?{
            ????????????
            for?(j=1;?j<=n;?j++)?{
            ????????????????t?
            =?INF;
            ????????????????
            for?(k=1;?k<=n;?k++)?{
            ????????????????????
            if?(k?==?j)?continue;
            ????????????????????t1?
            =?i?%?num[k][j]?>?0???i?%?num[k][j]?:?num[k][j];
            ????????????????????
            if?(a[k][j][t1]?>?0?&&?t?>?d[i-1][k]?+?a[k][j][t1])?{
            ????????????????????????t?
            =?d[i-1][k]?+?a[k][j][t1];
            ????????????????????}

            ????????????????}

            ????????????????d[i][j]?
            =?t;
            ????????????}

            ????????}

            ????????printf(
            "Scenario?#%d\n",?++tmp);
            ????????
            if?(d[m][n]?!=?INF)?{
            ????????????printf(
            "The?best?flight?costs?%d.\n\n",?d[m][n]);
            ????????}
            ?else?{
            ????????????printf(
            "No?flight?possible.\n\n");
            ????????}

            ????}

            ????system(
            "pause");
            ????
            return?0;
            }

            posted on 2006-10-12 00:41 閱讀(570) 評論(0)  編輯 收藏 引用 所屬分類: ACM題目
            久久精品国产福利国产琪琪| 品成人欧美大片久久国产欧美| 欧美色综合久久久久久| 久久成人18免费网站| 久久精品国产久精国产一老狼| 婷婷久久久亚洲欧洲日产国码AV| 99精品久久久久中文字幕| 国产午夜电影久久| 久久无码专区国产精品发布| 久久久久久无码Av成人影院| 国产精品成人无码久久久久久| 久久午夜无码鲁丝片秋霞| 日本久久久久久中文字幕| 国内精品久久国产| 免费国产99久久久香蕉| 一本色道久久综合狠狠躁| 久久国产三级无码一区二区| 久久久久亚洲AV片无码下载蜜桃 | 久久综合九色综合欧美狠狠| 97精品伊人久久大香线蕉app| 国产精品一区二区久久精品无码| 亚洲国产精品狼友中文久久久| 99久久99久久| 精品久久久久久无码中文字幕一区| 亚洲精品国产自在久久| 青青草国产精品久久久久| 国产亚洲精品自在久久| 亚洲精品乱码久久久久久蜜桃不卡| 久久国产午夜精品一区二区三区| 国产99久久精品一区二区| 人妻少妇久久中文字幕一区二区| 午夜精品久久久内射近拍高清 | 久久成人国产精品免费软件| 久久精品亚洲精品国产欧美| 久久99国产精品99久久| 久久久久亚洲av无码专区导航| 亚洲综合伊人久久综合| 久久国产亚洲精品| 久久久噜噜噜久久中文字幕色伊伊 | 久久精品国产免费观看三人同眠| 久久国产精品一区|