CSES - Datatähti 2025 loppu - Results
Submission details
Task:Suunnistus
Sender:MikaelM
Submission time:2025-01-18 14:06:17 +0200
Language:C++ (C++17)
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED31
#2ACCEPTED12
#3ACCEPTED57
Test results
testverdicttimegroup
#1ACCEPTED0.00 s3details
#2ACCEPTED0.01 s1, 2, 3details
#3ACCEPTED0.01 s1, 2, 3details
#4ACCEPTED0.01 s1, 2, 3details
#5ACCEPTED0.00 s1, 2, 3details
#6ACCEPTED0.00 s1, 2, 3details
#7ACCEPTED0.06 s2, 3details
#8ACCEPTED0.07 s2, 3details
#9ACCEPTED0.01 s2, 3details
#10ACCEPTED0.12 s3details
#11ACCEPTED0.14 s3details
#12ACCEPTED0.03 s3details
#13ACCEPTED0.10 s3details
#14ACCEPTED0.04 s2, 3details
#15ACCEPTED0.01 s3details
#16ACCEPTED0.00 s3details
#17ACCEPTED0.02 s2, 3details

Code

#include<bits/stdc++.h>
using namespace std;
#define all(x) x.begin(),x.end()
using ll = long long;

char c[501][501];
vector<pair<int, int>> rastit[10];
int e[15][500][500];

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);

    // freopen("input.txt", "r", stdin);
    // freopen("output.txt", "w", stdout);

    int n, m, k;
    cin >> n >> m >> k;

    pair<int, int> start, end;

    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            cin >> c[i][j];
            if (c[i][j] >= '1' && c[i][j] <= '9') rastit[c[i][j] - '1' + 1].push_back({i, j});
            else if (c[i][j] == 'S') start = {i, j};
            else if (c[i][j] == 'E') end = {i, j};
        }
    }


    // S

    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            e[0][i][j] = 1e9;
        }
    }
    e[0][start.first][start.second] = 0;

    queue<pair<int, int>> q;
    q.push({start.first, start.second});


    while (!q.empty()) {
        int y = q.front().first, x = q.front().second;
        q.pop();

        if (y > 1 && c[y-1][x] != '#' && e[0][y][x] + 1 < e[0][y-1][x]) {
            e[0][y-1][x] = e[0][y][x] + 1;
            q.push({y-1, x});
        }
        if (y < n && c[y+1][x] != '#' && e[0][y][x] + 1 < e[0][y+1][x]) {
            e[0][y+1][x] = e[0][y][x] + 1;
            q.push({y+1, x});
        }
        if (x > 0 && c[y][x-1] != '#' && e[0][y][x] + 1 < e[0][y][x-1]) {
            e[0][y][x-1] = e[0][y][x] + 1;
            q.push({y, x-1});
        }
        if (x < m && c[y][x+1] != '#' && e[0][y][x] + 1 < e[0][y][x+1]) {
            e[0][y][x+1] = e[0][y][x] + 1;
            q.push({y, x+1});
        } 

    }  

    // for (int i = 1; i <= n; i++) {
    //     for (int j = 1; j <= m; j++) {
    //         if (e[0][i][j] == 1e9) {
    //             cout << 0;
    //         }
    //         else cout << e[0][i][j];
    //     }
    //     cout << "\n";
    // }



    // rastit

    for (int r = 1; r <= k; r++) {

        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= m; j++) {
                e[r][i][j] = 1e9;
            }
        }

        queue<pair<int, int>> q;
        for (auto u : rastit[r]) {
            e[r][u.first][u.second] = e[r-1][u.first][u.second];
            q.push({u.first, u.second});
        }




        while (!q.empty()) {
            int y = q.front().first, x = q.front().second;
            q.pop();

            if (y > 1 && c[y-1][x] != '#' && e[r][y][x] + 1 < e[r][y-1][x]) {
                e[r][y-1][x] = e[r][y][x] + 1;
                q.push({y-1, x});
            }
            if (y < n && c[y+1][x] != '#' && e[r][y][x] + 1 < e[r][y+1][x]) {
                e[r][y+1][x] = e[r][y][x] + 1;
                q.push({y+1, x});
            }
            if (x > 0 && c[y][x-1] != '#' && e[r][y][x] + 1 < e[r][y][x-1]) {
                e[r][y][x-1] = e[r][y][x] + 1;
                q.push({y, x-1});
            }
            if (x < m && c[y][x+1] != '#' && e[r][y][x] + 1 < e[r][y][x+1]) {
                e[r][y][x+1] = e[r][y][x] + 1;
                q.push({y, x+1});
            } 

        }  


            

    }

    cout << (e[k][end.first][end.second] == 1e9 ? -1 : e[k][end.first][end.second]);


}

Test details

Test 1

Group: 3

Verdict: ACCEPTED

input
10 10 9
S293#35616
#662963731
54975451#7
5162589168
...

correct output
25

user output
25

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
500 500 0
.................................

correct output
301

user output
301

Test 3

Group: 1, 2, 3

Verdict: ACCEPTED

input
500 500 0
.#.........#.#..##..#............

correct output
253

user output
253

Test 4

Group: 1, 2, 3

Verdict: ACCEPTED

input
500 500 0
...#......##.##.#.#..##..#..##...

correct output
-1

user output
-1

Test 5

Group: 1, 2, 3

Verdict: ACCEPTED

input
500 1 0
.
.
.
.
...

correct output
77

user output
77

Test 6

Group: 1, 2, 3

Verdict: ACCEPTED

input
1 500 0
.................................

correct output
166

user output
166

Test 7

Group: 2, 3

Verdict: ACCEPTED

input
500 500 9
.................................

correct output
3447

user output
3447

Test 8

Group: 2, 3

Verdict: ACCEPTED

input
500 500 9
.#........#..................#...

correct output
4952

user output
4952

Test 9

Group: 2, 3

Verdict: ACCEPTED

input
500 500 9
##.########.##########.#..#......

correct output
-1

user output
-1

Test 10

Group: 3

Verdict: ACCEPTED

input
500 500 9
623475428948841896621266296765...

correct output
205

user output
205

Test 11

Group: 3

Verdict: ACCEPTED

input
500 500 9
7##814125813#3463#272134469457...

correct output
157

user output
157

Test 12

Group: 3

Verdict: ACCEPTED

input
500 500 9
##67##36##5#3###67###8972#61##...

correct output
-1

user output
-1

Test 13

Group: 3

Verdict: ACCEPTED

input
500 500 9
....................#...#........

correct output
1313

user output
1313

Test 14

Group: 2, 3

Verdict: ACCEPTED

input
499 499 9
S#...#...#...#...#...#...#...#...

correct output
1124942

user output
1124942

Test 15

Group: 3

Verdict: ACCEPTED

input
500 1 9
1
6
1
3
...

correct output
332

user output
332

Test 16

Group: 3

Verdict: ACCEPTED

input
1 500 9
996327784392827829434482995353...

correct output
135

user output
135

Test 17

Group: 2, 3

Verdict: ACCEPTED

input
500 500 9
.................................

correct output
-1

user output
-1