Sicily 1917. Transit search

来源:互联网 发布:淘宝宣传软文 编辑:程序博客网 时间:2024/06/14 06:37

1917. Transit search

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

Henry decides to develop a web site, which will provide the service of transit search. But he can only get the transit data of Guangzhou, so his web site can only support the transit search of Guangzhou. We suppose Guangzhou is 10240 meters by 10240 meters. The coordinate of the top-left corner is (0,0). The coordinate of the bottom-right corner is (10240,10240). The X-axis is from top to bottom and the Y-axis is from left to right. At the beginning, four pictures of the size 10cm by 10 cm make up of the whole map of Guangzhou. They are numbered from 0 to 3. It is to say at the beginning the scale of the map is 1cm:512 meters. We call the four pictures are at level 1. 

When you double-click on the map using the mouse, the map will zoom in. The pictures at next level will be shown on the screen. For example, when you double-click on the above map, picture 0 will be replaced by four pictures 00, 01, 02, 03, all of whose sizes are 10 cm by 10 cm. and the scale of the map change to 1cm:256 meters. (notice that, pictures 00,01,02,03 together describe the same area as picture 0). When you continue double-click, picture 01 will be replaced by pictures 010,011,012,013, and so on.

Now, a position's coordinate can be given by(str, x,y). str consists of 8 characters each from 0 to 3. It describes the id of the picture which the position is located at. x and y (0 ≤ cmx, y ≤ 10cm) describe the position's offset relative to the top-left corner on picture str. Notice that the X-axis is from top to bottom and the Y-axis is from left to right.

Now, the start position and end position are given as (start, sx, sy) , (end, ex, ey) . And some information about the bus line will be also given. First, each bus stop will be described by (name, x, y) , its name and its coordinate. Second, each bus line will be described by (name1, name2, name3...namek) which are the bus stops the bus line travels through. If the distance between the start position and end position is no more than 2000 meters, the web site will suggest walking there. Otherwise, the web site will find a bus stop whose distance is no more than 1000 meters from the start position. You can take buses to a bus stop whose distance is no more than 1000 meters from the end position. Along the way, you can change buses at any bus stop. If you can take buses according the above rules, the web site will find a route with fewest number of changing buses. If you can't take buses according the above rules, the web site will suggest taking a taxi.

Input

 The input begins with a line containing an integer T , the number of test cases.

For each case, the first two lines describe the start position and the end position as followed.


Start sx sy 
End ex ey


Start and End both contain 8 characters each from 0 to 3. 0cm ≤ sx, sy, ex, ey ≤ 10cm . Notice that all the numbers in the input are integers.

The next line contains an integer n (0 < n < 5001) , indicating the total number of bus stops in Guangzhou. The following n lines each describe a bus stop in the format:


Name x y


Name contains no more than 20 characters. 0 ≤ x, y ≤ 10240 .


Next comes an integer m (0 < m ≤ 100) , indicating the number of bus lines in Guangzhou.

Then following is the description of the m bus lines.

Each bus line is described as followed:



Name1 Name2 Name3...Namek


K (0 < K ≤ 30) is the number of bus stops along the bus line.

Namei is the ith bus stop along the bus line. Notice that the bus line is bidirectional.

Output

 If the distance between the start position and end position is no more than 2000 meters, print ``walk there" in a single line.
If you can take buses according to the above rule, print the fewest number of buses you have to take. For example, if you can take a bus directly to end position without changing bus line, print 1.
Otherwise, print ``take a taxi" in a single line.

Sample Input

3 00000000 1 1 00001000 3 3 4 a 1 1 b 20 30 c 40 50 d 100 100 2 3 a b c 3 b c d 00000000 1 1 03231130 5 5 5 a 1 1 b 1000 1000 c 3000 3000 d 3000 4000 e 4500 4000 2 3 a b c 3 c d e 00000000 1 1 03231130 5 5 4 a 1 1 b 1000 1000 c 3000 3000 d 3000 4000 2 3 a b c 3 b c d

Sample Output

walk there 2 

take a taxi

// Problem#: 1917// Submission#: 3591560// The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License// URI: http://creativecommons.org/licenses/by-nc-sa/3.0/// All Copyright reserved by Informatic Lab of Sun Yat-sen University#include <stdio.h>#include <string.h>const int STOP = 5002;const int LINE = 100;const int LENGTH = 30;const int NAME = 21;const int STR = 8;const int WALK = 2000;const int BUS = 1000;const int DIMENSION = 10240;int x[STOP], y[STOP];char name[STOP][NAME];int n;int length[LINE];int line[LINE][LENGTH];int m;int counter[STOP];int pass_by[STOP][LINE];int distant[STOP];int queue[STOP];void calc(int & l, int & u, int f) {    int m = (l + u) / 2;    if (f == 0) u = m;    else l = m;}void get_position(int p) {    char buf[STR + 1];    int lx, ux, ly, uy, dx, dy;    scanf("%s%d%d", buf, &dx, &dy);    lx = ly = 0;    ux = uy = DIMENSION;    for (int i = 0; i < STR; i++) {        char ch = buf[i] - '0';        calc(lx, ux, ch & 2);        calc(ly, uy, ch & 1);    }    x[p] = lx + dx * 4;    y[p] = ly + dy * 4;}int sqr(int x) {    return x * x;}int in_range(int i, int j, int ds) {    return sqr(x[i] - x[j]) + sqr(y[i] - y[j]) <= ds * ds;}int main() {    int cs;    scanf("%d", &cs);    while (cs--) {        get_position(0);        get_position(1);        scanf("%d", &n);        for (int i = 2; i < n + 2; i++) scanf("%s%d%d", name[i], x + i, y + i);        memset(counter, 0, sizeof(int) * (n + 2));        scanf("%d", &m);        for (int i = 0; i < m; i++) {            scanf("%d", length + i);            for (int j = 0; j < length[i]; j++) {                char buf[NAME];                scanf("%s", buf);                for (int id = 2; id < n + 2; id++) {                    if (strcmp(name[id], buf) == 0) {                        line[i][j] = id;                        pass_by[id][counter[id]] = i;                        counter[id]++;                        break;                    }                }            }        }        if (in_range(0, 1, WALK)) {            printf("walk there\n");            continue;        }        for (int i = 2; i < n + 2; i++) distant[i] = n + 1;        int back = 0;        for (int i = 2; i < n + 2; i++) {            if (in_range(0, i, BUS)) {                queue[back++] = i;                distant[i] = 0;            }        }        for (int front = 0; front < back; front++) {            int s = queue[front];            int d = distant[s];            for (int ptr = 0; ptr < counter[s]; ptr++) {                int line_id = pass_by[s][ptr];                for (int i = 0; i < length[line_id]; i++) {                    int t = line[line_id][i];                    if (distant[t] > n) {                        distant[t] = d + 1;                        queue[back++] = t;                    }                }            }        }        int ret = n + 1;        for (int i = 2; i < n + 2; i++) {            if (in_range(1, i, BUS) && distant[i] < ret) ret = distant[i];        }        if (ret < n + 1) printf("%d\n", ret);        else printf("take a taxi\n");    }    return 0;}                                 


0 0
原创粉丝点击