結果

問題 No.34 砂漠の行商人
ユーザー krotonkroton
提出日時 2014-10-18 20:23:21
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,738 bytes
コンパイル時間 979 ms
コンパイル使用メモリ 76,088 KB
実行使用メモリ 491,900 KB
最終ジャッジ日時 2023-08-28 21:19:16
合計ジャッジ時間 15,341 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,560 ms
491,900 KB
testcase_01 AC 2 ms
5,460 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <fstream>
#include <sstream>
using namespace std;
typedef long long ll;

const int INF = 1 << 20;

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

struct State {
    int x, y, d;
};

int rest[100][100][10001];
bool inQ[100][100][10001];

int N, V, Sx, Sy, Gx, Gy;
int in[110][110];

int solve(){
    queue<State> Q;
    Q.push(State{Sx, Sy, 0});
    
    rest[Sx][Sy][0] = V;
    inQ[Sx][Sy][0] = true;
    
    int res = INF;
    while(!Q.empty()){
        State s = Q.front(); Q.pop();
        int x = s.x, y = s.y, d = s.d, v = rest[x][y][d];
        
        inQ[x][y][d] = false;
        
        if(x == Gx && y == Gy){
            res = min(res, d);
            continue;
        }
        
        for(int i=0;i<4;i++){
            int nd = d + 1;
            
            int ny = y + dy[i];
            int nx = x + dx[i];
            if(ny < 0 || ny >= N || nx < 0 || nx >= N)continue;
            
            int nv = v - in[nx][ny];
            if(nv <= rest[nx][ny][nd])continue;
            if(inQ[nx][ny][nd])continue;
            
            Q.push(State{nx, ny, nd});
            
            rest[nx][ny][nd] = nv;
            inQ[nx][ny][nd] = true;
        }
    }
    
    if(res >= INF){
        return -1;
    } else {
        return res;
    }
}

int main(){
    cin >> N >> V >> Sx >> Sy >> Gx >> Gy;
    
    --Sx; --Sy;
    --Gx; --Gy;
    
    for(int y=0;y<N;y++)for(int x=0;x<N;x++){
        cin >> in[x][y];
    }
    
    cout << solve() << endl;
    return 0;
}
0