제출 #742550

#제출 시각아이디문제언어결과실행 시간메모리
742550bogdanvladmihaiAwesome Arrowland Adventure (eJOI19_adventure)C++14
22 / 100
1 ms212 KiB
#include <iostream>
#include <vector>
#include <queue>
#include <utility>
#include <limits.h>

/// W N E S
const std::vector<std::pair<int, int>> dirs = {{0, -1}, {-1, 0}, {0, 1}, {1, 0}};

struct Node {
    int cost;
    int x, y;
    Node(int cost_, int x_, int y_) : cost(cost_), x(x_), y(y_) {}
    bool operator < (const Node &other) const {
        return cost < other.cost;
    }
};

inline bool inside(int x, int y, int N, int M) {
    return x >= 0 && y >= 0 && x < N && y < M;
}

int main() {
    int N, M;
    std::cin >> N >> M;
    std::vector<std::string> mat(N);
    for (auto &line : mat) {
        std::cin >> line;
    }
    std::priority_queue<Node> Q;
    std::vector<std::vector<int>> dist(N, std::vector<int>(M, INT_MAX / 2));
    if (mat[0][0] != 'X') {
        dist[0][0] = 0;
        Q.emplace(0, 0, 0);
    }
    while (!Q.empty()) {
        int cost = Q.top().cost, x = Q.top().x, y = Q.top().y;
        Q.pop();
        if (x == N - 1 && y == M - 1) {
            break;
        }
        if (cost > dist[x][y]) {
            continue;
        }
        int j = 0;
        switch (mat[x][y]) {
            case 'N':
                j = 1;
                break;
            case 'E':
                j = 2;
                break;
            case 'S':
                j = 3;
                break;
        }
        for (int i = 0; i < 4; i++) {
            int nx = x + dirs[(i + j) % 4].first, ny = y + dirs[(i + j) % 4].second;
            if (inside(nx, ny, N, M) && dist[nx][ny] > dist[x][y] + i) {
                dist[nx][ny] = dist[x][y] + i;
                if (mat[nx][ny] != 'X' || (nx == N - 1 && ny == M - 1)) {
                    Q.emplace(dist[nx][ny], nx, ny);
                }
            }
        }
    }
    std::cout << (dist[N - 1][M - 1] < INT_MAX / 2 ? dist[N - 1][M - 1] : -1) << "\n";
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...