結果

問題 No.2366 登校
ユーザー Bryson NgBryson Ng
提出日時 2024-05-02 00:58:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,968 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 188,236 KB
実行使用メモリ 12,512 KB
最終ジャッジ日時 2024-05-02 00:58:13
合計ジャッジ時間 3,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 116 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 350 ms
12,512 KB
testcase_26 AC 448 ms
12,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Source: https://usaco.guide/general/io

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int h, w, k, t;cin >> h >> w >> k >> t;
    if(t >= h + w - 2){
        cout << 0 << endl;
        return 0;
    }
    vector<vector<ll>> C(h, vector<ll>(w)), D(h, vector<ll>(w));
    for(int i = 0; i < k; i++){
        int y, x, v1, v2;
        cin >> y >> x >> v1 >> v2;
        y--, x--;
        C[y][x] = v1;
        D[y][x] = v2;
    }
    int temp = h + w - 2 - t;
    const ll INF = 1ll << 20;
    vector<vector<vector<ll>>> v(temp, vector<vector<ll>>(h, vector<ll>(w, INF)));
    priority_queue<tuple<ll, ll, int, int>> pq;
    v[0][0][0] = 0;
    pq.emplace(0, 0, 0, 0);
    ll ans = INF;
    while(!pq.empty()){
        ll tim, d;
        int y, x;
        tie(d, tim, y, x) = pq.top();
        pq.pop();
        if(d > v[tim][y][x]) continue;
        if(C[y][x] >= 2){
            ll nt = tim + C[y][x] - 1;
            if(nt < temp){
                if(d + D[y][x] < v[nt][y][x]){
                    v[nt][y][x] = d + D[y][x];
                    pq.emplace(v[nt][y][x], nt, y, x);
                }
            }
            else{
                ans = min(ans, d + D[y][x]);
            }
        }
        for(int i = 0 ; i < 4 ; i++){
            int yy = y + (i == 0) - (i == 1);
            int xx = x + (i == 2) - (i == 3);
            if(yy < 0 || xx < 0 || yy >= h || xx >= w) continue;
            if(yy < y || xx < x){
                ll nt = tim - 2;
                if(nt < 0) continue;
                if(d >= v[nt][yy][xx]) continue;
                v[nt][yy][xx] = d;
                pq.emplace(d, nt, yy, xx);
            }else{
                if(d >= v[tim][yy][xx]) continue;
                v[tim][yy][xx] = d;
                pq.emplace(d, tim, yy, xx);
            }
        }
    }
    if(ans == INF) ans = -1;
    cout << ans << endl;
}
0