結果

問題 No.20 砂漠のオアシス
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-01 01:43:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 2,216 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 215,000 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-01 01:43:23
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 18 ms
6,820 KB
testcase_06 AC 20 ms
6,816 KB
testcase_07 AC 20 ms
6,820 KB
testcase_08 AC 20 ms
6,820 KB
testcase_09 AC 20 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 6 ms
6,820 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 5 ms
6,820 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

vector<int> dx = {0, 1, 0, -1};
vector<int> dy = {1, 0, -1, 0};

template<typename T> bool chmin(T& a, const T& b) {
    if (a > b) {
        a = b;
        return true;
    }
    else return false;
}

int main() {
    cin.tie(nullptr);
    
    int N, V, Ox, Oy;
    cin >> N >> V >> Ox >> Oy;
    vector L(N, vector<int>(N));
    rep(i, 0, N) rep(j, 0, N) cin >> L[i][j];
    
    vector d(N, vector<int>(N, 1 << 25));
    priority_queue<pair<int, pair<int, int>>, vector<pair<int, pair<int, int>>>, greater<pair<int, pair<int, int>>>> que;
    
    d[0][0] = 0;
    que.push({0, {0, 0}});
    
    while (!que.empty()) {
        int dist;
        pair<int, int> v;
        tie(dist, v) = que.top();
        que.pop();
        
        if (dist > d[v.first][v.second]) continue;
        
        rep(i, 0, 4) {
            int x = v.second + dx[i];
            int y = v.first + dy[i];
            
            if (x < 0 || N <= x || y < 0 || N <= y) continue;
            
            if (chmin(d[y][x], d[v.first][v.second] + L[y][x])) {
                que.push({d[y][x], {y, x}});
            }
        }
    }
    
    if (V - d[N - 1][N - 1] > 0) {
        cout << "YES\n";
        return 0;
    } else if (Ox == 0 && Oy == 0) {
        cout << "NO\n";
        return 0;
    }

    V -= d[Oy - 1][Ox - 1];
    V *= 2;
    
    vector d2(N, vector<int>(N, 1 << 25));
    d2[Oy - 1][Ox - 1] = 0;
    que.push({0, {Oy - 1, Ox - 1}});
    
    while (!que.empty()) {
        int dist;
        pair<int, int> v;
        tie(dist, v) = que.top();
        que.pop();
        
        if (dist > d2[v.first][v.second]) continue;
        
        rep(i, 0, 4) {
            int x = v.second + dx[i];
            int y = v.first + dy[i];
            
            if (x < 0 || N <= x || y < 0 || N <= y) continue;
            
            if (chmin(d2[y][x], d2[v.first][v.second] + L[y][x])) {
                que.push({d2[y][x], {y, x}});
            }
        }
    }
    
    if (V - d2[N - 1][N - 1] > 0) cout << "YES\n";
    else cout << "NO\n";
}
0