結果

問題 No.2366 登校
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-07-09 04:11:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 279 ms / 4,000 ms
コード長 1,770 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 234,184 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-06-12 07:55:06
合計ジャッジ時間 5,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 137 ms
10,624 KB
testcase_13 AC 125 ms
10,752 KB
testcase_14 AC 133 ms
10,624 KB
testcase_15 AC 134 ms
10,624 KB
testcase_16 AC 133 ms
10,624 KB
testcase_17 AC 133 ms
10,624 KB
testcase_18 AC 136 ms
10,624 KB
testcase_19 AC 136 ms
10,624 KB
testcase_20 AC 130 ms
10,624 KB
testcase_21 AC 127 ms
10,624 KB
testcase_22 AC 106 ms
10,368 KB
testcase_23 AC 54 ms
20,608 KB
testcase_24 AC 56 ms
20,608 KB
testcase_25 AC 276 ms
20,608 KB
testcase_26 AC 279 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

ll H, W, T;

vector<vector<pair<ll, ll>>> field(80, vector<pair<ll, ll>>(80, {0, 0}));

template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>;

void solve(){

    ll h, w, nh, nw, alt;
    ll x, t, c, d; //x...疲労度、t...時間

    pq<tuple<ll, ll, ll, ll>> que;
    int dx[4] = {1, 0, -1, 0};
    int dy[4] = {0, 1, 0, -1};
    vector<vector<vector<ll>>> dist(H, vector(W, vector<ll>(321, 9e18))); //-160~160
    vector<vector<vector<bool>>> visit(H, vector(W, vector<bool>(321)));

    dist[0][0][160] = 0;
    que.push({0, 0, 0, 160});

    while(!que.empty()){
        tie(x, h, w, t) = que.top();
        que.pop();
        if (visit[h][w][t]) continue;
        if (t == 320) continue;
        visit[h][w][t] = 1;
        for (int dir=0; dir < 4; dir++){
            nh = h + dx[dir];
            nw = w + dy[dir];
            if (nh < 0 || nh >= H || nw < 0 || nw >= W) continue;
            if (x < dist[nh][nw][t+1]){
                dist[nh][nw][t+1] = x;
                que.push({dist[nh][nw][t+1], nh, nw, t+1});
            }
        }
        if (field[h][w].first > 0){
            tie(c, d) = field[h][w];
            if (t-c >= 0 && x+d < dist[h][w][t-c]){
                dist[h][w][t-c] = x+d;
                que.push({dist[h][w][t-c], h, w, t-c});
            }
        }
    }

    ll mi=9e18;
    for (int i=0; i<=min(T+160, 320LL); i++){
        mi = min(mi, dist[H-1][W-1][i]);
    }

    cout << (mi == 9e18 ? -1 : mi) << endl;
}


int main(){

    ll K, a, b, c, d;
    cin >> H >> W >> K >> T;
    for (int i=0; i<K; i++){
        cin >> a >> b >> c >> d;
        a--; b--; c--;
        field[a][b] = {c, d};
    }

    solve();

    return 0;

}
0