結果

問題 No.34 砂漠の行商人
ユーザー 👑 rin204rin204
提出日時 2022-07-10 17:17:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 928 ms / 5,000 ms
コード長 1,488 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 208,880 KB
実行使用メモリ 394,300 KB
最終ジャッジ日時 2024-06-11 06:40:33
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 20 ms
5,888 KB
testcase_08 AC 26 ms
7,532 KB
testcase_09 AC 368 ms
229,092 KB
testcase_10 AC 208 ms
394,000 KB
testcase_11 AC 811 ms
394,300 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 928 ms
101,248 KB
testcase_14 AC 681 ms
97,152 KB
testcase_15 AC 15 ms
42,624 KB
testcase_16 AC 62 ms
80,896 KB
testcase_17 AC 11 ms
30,208 KB
testcase_18 AC 9 ms
9,008 KB
testcase_19 AC 188 ms
22,912 KB
testcase_20 AC 354 ms
38,004 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 17 ms
38,016 KB
testcase_23 AC 33 ms
115,324 KB
testcase_24 AC 516 ms
205,696 KB
testcase_25 AC 27 ms
9,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#include<atcoder/mincostflow>
using namespace std;
//using namespace atcoder;

int dx[4] = {0, 0, 1, -1};
int dy[4] = {1, -1, 0, 0};

void solve(){
    int n, v, sy, sx, gy, gx;
    cin >> n >> v >> sy >> sx >> gy >> gx;
    vector<vector<int>> L(n, vector<int>(n));
    for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) cin >> L[i][j];
    sx--; sy--; gx--; gy--;
    auto f = [&](int i, int j, int k) -> int{
        return (i * n + j) * v + k;
    };
    vector<int> dist(n * n * v, -1);
    dist[f(sx, sy, v - 1)] = 0;
    queue<int> que;
    que.push(f(sx, sy, v - 1));
    while(!que.empty()){
        int tmp = que.front();
        que.pop();
        int x = tmp / (n * v);
        tmp -= x * n * v;
        int y = tmp / v;
        int vv = tmp - y * v;
        for(int t = 0; t < 4; t++){
            int nx = x + dx[t];
            int ny = y + dy[t];
            if(nx == -1 || nx == n || ny == -1 || ny == n) continue;
            int nv = vv - L[nx][ny];
            if(nv < 0) continue;
            if(dist[f(nx, ny, nv)] == -1){
                if(nx == gx && ny == gy){
                    cout << dist[f(x, y, vv)] + 1 << "\n";
                    return;
                }
                dist[f(nx, ny, nv)] = dist[f(x, y, vv)] + 1;
                que.push(f(nx, ny, nv));
            }
        }
    }
    cout << "-1\n";
}

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    t = 1;
    //cin >> t;
    while(t--) solve();
}
0