• <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>

            oyjpArt ACM/ICPC算法程序設(shè)計(jì)空間

            // I am new in programming, welcome to my blog
            I am oyjpart(alpc12, 四城)
            posts - 224, comments - 694, trackbacks - 0, articles - 6

            Finding Nemo

            Posted on 2007-01-14 01:58 oyjpart 閱讀(1341) 評論(2)  編輯 收藏 引用 所屬分類: ACM/ICPC或其他比賽

            Finding Nemo
            Time Limit:2000MS? Memory Limit:30000K
            Total Submit:1965 Accepted:370

            Description
            Nemo is a naughty boy. One day he went into the deep sea all by himself. Unfortunately, he became lost and couldn't find his way home. Therefore, he sent a signal to his father, Marlin, to ask for help.
            After checking the map, Marlin found that the sea is like a labyrinth with walls and doors. All the walls are parallel to the X-axis or to the Y-axis. The thickness of the walls are assumed to be zero.
            All the doors are opened on the walls and have a length of 1. Marlin cannot go through a wall unless there is a door on the wall. Because going through a door is dangerous (there may be some virulent medusas near the doors), Marlin wants to go through as few doors as he could to find Nemo.
            Figure-1 shows an example of the labyrinth and the path Marlin went through to find Nemo.


            We assume Marlin's initial position is at (0, 0). Given the position of Nemo and the configuration of walls and doors, please write a program to calculate the minimum number of doors Marlin has to go through in order to reach Nemo.

            Input
            The input consists of several test cases. Each test case is started by two non-negative integers M and N. M represents the number of walls in the labyrinth and N represents the number of doors.
            Then follow M lines, each containing four integers that describe a wall in the following format:
            x y d t
            (x, y) indicates the lower-left point of the wall, d is the direction of the wall -- 0 means it's parallel to the X-axis and 1 means that it's parallel to the Y-axis, and t gives the length of the wall.
            The coordinates of two ends of any wall will be in the range of [1,199].
            Then there are N lines that give the description of the doors:
            x y d
            x, y, d have the same meaning as the walls. As the doors have fixed length of 1, t is omitted.
            The last line of each case contains two positive float numbers:
            f1 f2
            (f1, f2) gives the position of Nemo. And it will not lie within any wall or door.
            A test case of M = -1 and N = -1 indicates the end of input, and should not be processed.

            Output
            For each test case, in a separate line, please output the minimum number of doors Marlin has to go through in order to rescue his son. If he can't reach Nemo, output -1.

            Sample Input

            8 9
            1 1 1 3
            2 1 1 3
            3 1 1 3
            4 1 1 3
            1 1 0 3
            1 2 0 3
            1 3 0 3
            1 4 0 3
            2 1 1
            2 2 1
            2 3 1
            3 1 1
            3 2 1
            3 3 1
            1 2 0
            3 3 0
            4 3 1
            1.5 1.5
            4 0
            1 1 0 1
            1 1 1 1
            2 1 1 1
            1 2 0 1
            1.5 1.7
            -1 -1

            Sample Output

            5
            -1

            第一次用priority_queue 發(fā)現(xiàn)效率還不錯(cuò)~
            居然1y了 很是驚訝的說 rp突然好起來了?
            我是從Nemo向Marlin搜索的 采用優(yōu)先隊(duì)列的方式就能找到最少的過門方式
            細(xì)節(jié)部分還是要注意~~
            Solution:
            //by Optimistic
            #include <stdio.h>
            #include <string.h>
            #include <queue>
            using namespace std;
            const int MAXINT = 2000000000;
            const int N = 210;
            struct Point{int x, y, p;}; //坐標(biāo),權(quán)值(經(jīng)過門的個(gè)數(shù))
            bool wall[N][N][2], door[N][N][2], end[N][N], seted[N][N]; //墻壁,門,可直達(dá)點(diǎn),標(biāo)記
            Point start;????????????????? //起點(diǎn)(Nemo)
            int nw, nd, xh, yh;?????????? //墻的個(gè)數(shù),門的個(gè)數(shù),x的最高值,y的最高值(限定搜索范圍)
            struct cmp
            {
            public: inline bool operator()(const Point& a, const Point& b) ?{return a.p > b.p;}
            };
            priority_queue <Point, vector<Point>, cmp> pq; //優(yōu)先隊(duì)列
            void set_end(int x, int y) //設(shè)置可直達(dá)點(diǎn)(不通過任何門)
            {
            ?end[x][y] = 1;
            ?if(x-1 <= xh && x-1 >= 0 && y <= yh && y >= 0 && wall[x][y][1] == 0?
            ??&& door[x][y][1] == 0 && !end[x-1][y])???set_end(x-1, y);
            ?if(x <= xh && x >= 0 && y-1 <= yh && y-1 >= 0 && wall[x][y][0] == 0
            ??&& door[x][y][0] == 0 && !end[x][y-1])???set_end(x, y-1);
            ?if(x+1 <= xh && x+1 >= 0 && y <= yh && y >= 0 && wall[x+1][y][1] == 0
            ??&& door[x+1][y][1] == 0 && !end[x+1][y])??set_end(x+1, y);
            ?if(x <= xh && x >= 0 && y+1 <= yh && y+1 >= 0 && wall[x][y+1][0] == 0
            ??&& door[x][y+1][0] == 0 && !end[x][y+1])??set_end(x, y+1);
            }?
            void init()
            {
            ?int i, x, y, d, t, j;
            ?double dx, dy;
            ?memset(wall, 0, sizeof(wall));
            ?memset(door, 0, sizeof(door));
            ?memset(end, 0, sizeof(end));
            ?yh = -MAXINT; xh = -MAXINT;
            ?for(i = 0; i<nw; i++) {
            ??scanf("%d%d%d%d", &x, &y, &d, &t);
            ??if(x > xh) xh = x;
            ??if(y > yh) yh = y;
            ??if(d == 0) {
            ???for(j = 0; j<t; j++) {
            ????wall[x+j][y][0] = 1;
            ???}
            ??}
            ??else {
            ???for(j = 0; j<t; j++) {
            ????wall[x][y+j][1] = 1;
            ???}
            ??}
            ?}
            ?for(i = 0; i<nd; i++) {
            ??scanf("%d%d%d", &x, &y, &d);
            ??if(x > xh) xh = x;
            ??if(y > yh) yh = y;
            ??door[x][y][d] = 1;
            ??wall[x][y][d] = 0;??? //門要把墻覆蓋 sample中可以看出來
            ?}
            ?cin >> dx >> dy;
            ?start.x = (int)dx, start.y = (int)dy, start.p = 0; //設(shè)置起點(diǎn) 初始化權(quán)值為0
            ?memset(seted, 0, sizeof(seted));
            ?set_end(0, 0); //設(shè)置可直達(dá)點(diǎn)(不通過任何門)
            ?yh++; xh++;
            }
            void work()
            {
            ?if(start.x < 0 || start.x >= 200 || start.y < 0 || start.y >= 200 || xh <0 || yh <0)? //特殊情況
            ?{?printf("0\n");??return ;?}
            ?memset(seted, 0, sizeof(seted));
            ?while(!pq.empty()) pq.pop();
            ?pq.push(start);??????????????????????? //起點(diǎn)入列
            ?seted[start.x][start.y] = 1;
            ?while(!pq.empty()) {
            ??Point cur = pq.top();????????????? //取權(quán)值最大的點(diǎn)
            ??pq.pop();
            ??if(end[cur.x][cur.y] == 1) { printf("%d\n", cur.p); return;} //找到解
            ??int x= cur.x, y = cur.y;
            ??Point now;
            ??if(x-1 <= xh && x-1 >= 0 && y <= yh && y >= 0 && wall[x][y][1] == 0 && !seted[x-1][y]) { //左搜索
            ???if(door[x][y][1] == 1) now.p = cur.p + 1;
            ???else now.p = cur.p;
            ???now.x = x -1;???now.y = y;
            ???pq.push(now);
            ??}
            ??if(x <= xh && x >= 0 && y - 1 <= yh && y-1 >= 0 && wall[x][y][0] == 0 && !seted[x][y-1]) { //下搜索
            ???if(door[x][y][0] == 1) now.p = cur.p + 1;
            ???else now.p = cur.p;
            ???now.x = x;???now.y = y-1;
            ???pq.push(now);
            ???seted[now.x][now.y] = 1;
            ??}
            ??if(x+1 <= xh && x+1 >= 0 && y <= yh && y >= 0 && wall[x+1][y][1] == 0 && !seted[x+1][y]) { //右搜索
            ???if(door[x+1][y][1] == 1) now.p = cur.p + 1;
            ???else now.p = cur.p;
            ???now.x = x + 1;???now.y = y;
            ???pq.push(now);
            ???seted[now.x][now.y] = 1;
            ??}
            ??if(x <= xh && x >= 0 && y+1 <= yh && y+1 >= 0 && wall[x][y+1][0] == 0 && !seted[x][y+1]) { //上搜索
            ???if(door[x][y+1][0] == 1) now.p = cur.p + 1;
            ???else now.p = cur.p;
            ???now.x = x;???now.y = y+1;
            ???pq.push(now);
            ???seted[now.x][now.y] = 1;
            ??}
            ?}
            ?printf("-1\n"); //無解
            }
            int main()
            {
            ?while(scanf("%d %d", &nw, &nd), !(nw == -1 && nd == -1)) {
            ??init();
            ??work();
            ?}
            ?return 0;
            }

            Feedback

            # re: Finding Nemo  回復(fù)  更多評論   

            2008-12-08 17:42 by lala
            拉拉,你左搜索忘標(biāo)記啦

            # re: Finding Nemo  回復(fù)  更多評論   

            2008-12-09 12:50 by alpc12
            好像是啊。。。汗。。
            77777亚洲午夜久久多人| 夜夜亚洲天天久久| 久久久久久噜噜精品免费直播| 亚洲午夜久久影院| 久久精品aⅴ无码中文字字幕不卡 久久精品aⅴ无码中文字字幕重口 | 久久精品国产91久久麻豆自制 | 日韩人妻无码精品久久久不卡 | 久久成人国产精品免费软件| 久久久久久久久无码精品亚洲日韩| 久久丫忘忧草产品| 国产精品久久波多野结衣| 欧美久久一级内射wwwwww.| 亚洲精品无码成人片久久| 青青草原综合久久| 中文字幕久久波多野结衣av| 久久久久久国产精品美女| 亚洲国产精品一区二区久久hs| 久久久一本精品99久久精品66| 久久精品国产亚洲av高清漫画| 久久棈精品久久久久久噜噜| 久久99国产综合精品女同| 久久久久久国产a免费观看黄色大片| 97久久精品无码一区二区| 国产高清国内精品福利99久久| 伊人久久大香线蕉综合Av| 久久久久久久久无码精品亚洲日韩 | 精品无码久久久久久尤物| 久久91精品久久91综合| 日日狠狠久久偷偷色综合0| 午夜精品久久久久| 国产精品一久久香蕉国产线看 | 精品久久久久久无码中文字幕| 亚洲国产精品无码久久久秋霞2 | 中文字幕无码久久精品青草| www亚洲欲色成人久久精品| 亚洲国产成人久久综合一区77| 99蜜桃臀久久久欧美精品网站| 99久久人人爽亚洲精品美女| 香蕉久久夜色精品国产尤物| 久久综合九色综合欧美狠狠| 久久人人爽人人爽人人片AV东京热|