QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#238218#7701. A (Fast) Walk in the Woodswillow#AC ✓65ms4184kbC++175.1kb2023-11-04 16:07:392023-11-04 16:07:39

Judging History

This is the latest submission verdict.

  • [2023-11-04 16:07:39]
  • Judged
  • Verdict: AC
  • Time: 65ms
  • Memory: 4184kb
  • [2023-11-04 16:07:39]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;

const int N = 2500 + 5;

int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};

int n, m;

int id[N * 4][4], C[N * 4], X[N * 4], Y[N * 4], who[N][4];

int chg(char c) {
    if(c == 'W') return 3;
    if(c == 'E') return 2;
    if(c == 'S') return 1;
    return 0;
}

int le[4][3];

int get(int x, int y) {
    for(int i = 0; i < 4; ++ i) {
        if(dx[i] == x && dy[i] == y) {
            return i;
        }
    }
    throw;
    return -1;
}

int cur, d;
char s[10];
bool vis[N][4];

void print(int c) {
    printf("%d %d\n", X[c], Y[c]);
    exit(0);
}

int getdir(int des, int d) {
    int cnt = 0;
    bool ok[4] = {0, 0, 0, 0};
    for(int dd = 0; dd < 4; ++ dd) if(dd != (d ^ 1)) {
        if(!id[des][dd] || !C[id[des][dd]]) continue;
        ok[dd] = 1;
        ++ cnt;
    }
    if(!cnt) {
        print(des);
        return 0;
    }
    if(cnt == 3) {
        return d;
    }

    if(cnt == 2) {
        if(!ok[le[d][0]]) return le[d][1];
        else return le[d][0];
    } else {
        for(int dd = 0; dd < 4; ++ dd)
        if(ok[dd]) d = dd;
    }    
    return d;
}

bool del = 0;

void refresh() {
    del = 0;
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
    memset(vis, 0, sizeof(vis));
    while(!vis[cur][d]) {
        vis[cur][d] = 1; 
        if(!C[id[cur][d]]) {
            print(cur);
            return;
        }
        -- C[id[cur][d]];
        if(!C[id[cur][d]]) {
            del = 1;
        }
        int des = who[cur][d];
        d = getdir(des, d);
        cur = des;
    }
}

int main() {
    scanf("%d%d", &n, &m);
    for(int i = 1; i <= n; ++ i) {
        scanf("%d%d", &X[i], &Y[i]);
    }

    le[1][0] = 2, le[1][1] = 1, le[1][2] = 3;
    le[0][0] = 3, le[0][1] = 0, le[0][2] = 2;
    le[2][0] = 0, le[2][1] = 2, le[2][2] = 1;
    le[3][0] = 1, le[3][1] = 3, le[3][2] = 0;

    for(int i = 1, x, y, z; i <= m; ++ i) {
        scanf("%d%d%d", &x, &y, &z);
        C[i] = z;
        int dx = X[y] - X[x], dy = Y[y] - Y[x];
        if(dx) dx /= abs(dx); if(dy) dy /= abs(dy);
        id[x][get(dx, dy)] = i; who[x][get(dx, dy)] = y;
        id[y][get(-dx, -dy)] = i; who[y][get(-dx, -dy)] = x;
    }

    scanf("%d", &cur);
    scanf("%s", s);

    d = chg(s[0]);
    del = 1;
    
    while(1) {
        while(del) refresh();
        vector <int> e;
        memset(vis, 0, sizeof(vis));
        int ld = -1, lw = 0;
        while(!vis[cur][d]) {
            vis[cur][d] = 1; 
            if(!C[id[cur][d]]) {
                print(cur);
                return 0;
            }
            e.push_back(id[cur][d]);
            int des = who[cur][d];
            int ddd = d;
            d = getdir(des, d);
            if(vis[des][d]) ld = ddd, lw = cur;
            cur = des;
        }

        int now = 1e9;
        for(auto x : e) {
            now = min(now, C[x]);
        }
        for(auto x : e) {
            C[x] -= now;
        }

        del = 1;
        
        d = getdir(cur, ld);
        cur = cur;
    }
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 4080kb

input:

7 8
0 0 5 0 12 0 0 5 5 5 0 10 12 10
1 2 2
2 3 4
4 5 5
6 7 8
1 4 4
2 5 7
3 7 4
4 6 6
4 N

output:

0 0

result:

ok single line: '0 0'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

2 1
5 5 100 5
1 2 10000
2 W

output:

5 5

result:

ok single line: '5 5'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3792kb

input:

4 4
0 0 0 10 10 10 10 0
1 2 10
2 3 10
3 4 10
1 4 10
4 N

output:

10 0

result:

ok single line: '10 0'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3792kb

input:

9 12
0 0 0 1 0 2 1 0 1 1 1 2 2 0 2 1 2 2
1 2 1
2 3 1
4 1 1
4 5 1
5 2 1
5 6 1
6 3 1
6 9 1
9 8 1
8 5 1
8 7 1
7 4 1
8 N

output:

1 0

result:

ok single line: '1 0'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3848kb

input:

9 12
0 0 0 1 0 2 1 0 1 1 1 2 2 0 2 1 2 2
1 2 1
2 3 1
4 1 1
4 5 1
5 2 1
5 6 1
6 3 1
6 9 1
9 8 1
8 5 1
8 7 1
7 4 1
8 W

output:

0 1

result:

ok single line: '0 1'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

4 4
0 0 0 5 5 5 5 0
1 2 1
2 3 1
3 4 1
4 1 1
1 E

output:

0 0

result:

ok single line: '0 0'

Test #7:

score: 0
Accepted
time: 0ms
memory: 4052kb

input:

4 4
0 0 0 5 5 5 5 0
1 2 1
2 3 1
3 4 1
4 1 1
1 N

output:

0 0

result:

ok single line: '0 0'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3880kb

input:

4 4
0 0 0 5 5 5 5 0
1 2 10000
2 3 10000
3 4 10000
4 1 10000
1 E

output:

0 0

result:

ok single line: '0 0'

Test #9:

score: 0
Accepted
time: 0ms
memory: 4052kb

input:

4 4
0 0 0 5 5 5 5 0
1 2 101
2 3 101
3 4 100
4 1 100
1 E

output:

0 0

result:

ok single line: '0 0'

Test #10:

score: 0
Accepted
time: 0ms
memory: 3792kb

input:

4 4
0 0 0 5 5 5 5 0
1 2 101
2 3 100
3 4 101
4 1 100
1 E

output:

0 0

result:

ok single line: '0 0'

Test #11:

score: 0
Accepted
time: 0ms
memory: 4092kb

input:

8 9
0 20 10 20 0 10 10 10 20 10 30 10 20 0 30 0
1 2 10
3 4 10
4 5 11
5 6 10
7 8 10
1 3 10
2 4 10
5 7 10
6 8 10
4 E

output:

20 10

result:

ok single line: '20 10'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3792kb

input:

8 9
0 20 10 20 0 10 10 10 20 10 30 10 20 0 30 0
1 2 10
3 4 10
4 5 10
5 6 10
7 8 10
1 3 10
2 4 10
5 7 10
6 8 10
4 E

output:

10 10

result:

ok single line: '10 10'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

8 7
0 53 10 17 25 8 25 17 37 0 0 8 10 0 37 53
1 8 100
4 2 200
6 3 100
1 6 100
7 2 100
4 3 100
5 8 100
7 N

output:

37 0

result:

ok single line: '37 0'

Test #14:

score: 0
Accepted
time: 1ms
memory: 4008kb

input:

2400 2999
0 0 1 0 1 1 0 1 2 0 3 0 3 1 2 1 4 0 5 0 5 1 4 1 6 0 7 0 7 1 6 1 8 0 9 0 9 1 8 1 10 0 11 0 11 1 10 1 12 0 13 0 13 1 12 1 14 0 15 0 15 1 14 1 16 0 17 0 17 1 16 1 18 0 19 0 19 1 18 1 20 0 21 0 21 1 20 1 22 0 23 0 23 1 22 1 24 0 25 0 25 1 24 1 26 0 27 0 27 1 26 1 28 0 29 0 29 1 28 1 30 0 31 0 ...

output:

0 1

result:

ok single line: '0 1'

Test #15:

score: 0
Accepted
time: 9ms
memory: 4184kb

input:

2500 3748
0 0 0 10 10 0 10 10 20 0 20 10 30 0 30 10 40 0 40 10 50 0 50 10 60 0 60 10 70 0 70 10 80 0 80 10 90 0 90 10 100 0 100 10 110 0 110 10 120 0 120 10 130 0 130 10 140 0 140 10 150 0 150 10 160 0 160 10 170 0 170 10 180 0 180 10 190 0 190 10 200 0 200 10 210 0 210 10 220 0 220 10 230 0 230 10 ...

output:

12490 10

result:

ok single line: '12490 10'

Test #16:

score: 0
Accepted
time: 1ms
memory: 4184kb

input:

2500 2548
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 0...

output:

490 0

result:

ok single line: '490 0'

Test #17:

score: 0
Accepted
time: 1ms
memory: 3900kb

input:

2500 2524
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 0...

output:

240 250

result:

ok single line: '240 250'

Test #18:

score: 0
Accepted
time: 1ms
memory: 3908kb

input:

2500 4420
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 0...

output:

40 130

result:

ok single line: '40 130'

Test #19:

score: 0
Accepted
time: 1ms
memory: 3908kb

input:

2500 4373
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 5...

output:

70 70

result:

ok single line: '70 70'

Test #20:

score: 0
Accepted
time: 1ms
memory: 3904kb

input:

2500 3891
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 0 10 10 10 20 10 30 10 40 10 50 10 60 10 70 10 80 10 90 10 100 10 110 10 120 10 130 10 140 10 150 10 160 10 170 10 180 10 190 10 200 10 210 10 220 10 2...

output:

70 160

result:

ok single line: '70 160'

Test #21:

score: 0
Accepted
time: 1ms
memory: 3904kb

input:

2500 4352
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 5...

output:

300 190

result:

ok single line: '300 190'

Test #22:

score: 0
Accepted
time: 0ms
memory: 3996kb

input:

2500 4363
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 0 10 10 10 20 10 30 10 40 10 50 10 60 10 70 10 80 10 90 10 100 10 110 10 120 10 130 10 140 10 150 10 160 10 170 10 180 10 190 10 0 20 10 20 20 20 30 20 40 20 50 20 60 20 70 20 80 20...

output:

100 170

result:

ok single line: '100 170'

Test #23:

score: 0
Accepted
time: 1ms
memory: 3900kb

input:

2500 4043
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 5...

output:

130 90

result:

ok single line: '130 90'

Test #24:

score: 0
Accepted
time: 1ms
memory: 3920kb

input:

2500 2812
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 0 10 10 10 20 10 30 10 40 10 50 10 60 10 70 10 80 10 90 10 0 20 10 20 20 20 30 20 40 20 50 20 60 20 70 20 80 20 90 20 0 30 10 30 20 30 30 30 40 30 50 30 60 30 70 30 80 30 90 30 0 40 10 40 20 40 30 40 40 40 50 40 60 40 70 40 80 40 90 40 0 50 ...

output:

0 10

result:

ok single line: '0 10'

Test #25:

score: 0
Accepted
time: 1ms
memory: 3928kb

input:

2500 4009
0 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 80 0 90 0 100 0 110 0 120 0 130 0 140 0 150 0 160 0 170 0 180 0 190 0 200 0 210 0 220 0 230 0 240 0 250 0 260 0 270 0 280 0 290 0 300 0 310 0 320 0 330 0 340 0 350 0 360 0 370 0 380 0 390 0 400 0 410 0 420 0 430 0 440 0 450 0 460 0 470 0 480 0 490 0 5...

output:

300 30

result:

ok single line: '300 30'

Test #26:

score: 0
Accepted
time: 1ms
memory: 3904kb

input:

2500 4044
0 0 10 0 20 0 30 0 40 0 0 10 10 10 20 10 30 10 40 10 0 20 10 20 20 20 30 20 40 20 0 30 10 30 20 30 30 30 40 30 0 40 10 40 20 40 30 40 40 40 0 50 10 50 20 50 30 50 40 50 0 60 10 60 20 60 30 60 40 60 0 70 10 70 20 70 30 70 40 70 0 80 10 80 20 80 30 80 40 80 0 90 10 90 20 90 30 90 40 90 0 100...

output:

0 150

result:

ok single line: '0 150'

Test #27:

score: 0
Accepted
time: 65ms
memory: 3928kb

input:

2500 3748
0 998809 1000000 998809 0 998163 1000000 998163 0 996915 1000000 996915 0 996154 1000000 996154 0 994351 1000000 994351 0 993498 1000000 993498 0 992719 1000000 992719 0 992353 1000000 992353 0 991299 1000000 991299 0 991255 1000000 991255 0 990904 1000000 990904 0 989447 1000000 989447 0 ...

output:

1000000 0

result:

ok single line: '1000000 0'