結果

問題 No.34 砂漠の行商人
ユーザー ayame_pyayame_py
提出日時 2016-02-09 16:20:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 988 ms / 5,000 ms
コード長 1,403 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 166,548 KB
実行使用メモリ 139,904 KB
最終ジャッジ日時 2024-06-28 10:27:53
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 20 ms
13,184 KB
testcase_05 AC 23 ms
16,384 KB
testcase_06 AC 9 ms
9,984 KB
testcase_07 AC 37 ms
25,728 KB
testcase_08 AC 47 ms
30,464 KB
testcase_09 AC 288 ms
59,136 KB
testcase_10 AC 42 ms
25,984 KB
testcase_11 AC 878 ms
115,456 KB
testcase_12 AC 12 ms
8,960 KB
testcase_13 AC 988 ms
139,904 KB
testcase_14 AC 748 ms
117,120 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 47 ms
17,664 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 7 ms
5,632 KB
testcase_19 AC 221 ms
56,192 KB
testcase_20 AC 385 ms
79,488 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 10 ms
7,168 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 521 ms
94,592 KB
testcase_25 AC 31 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i,n) for(ll i=0; i<(ll)(n); i++)
#define FOR(i,n,m) for (ll i=n; i<(ll)(m); i++)
#define pb push_back
#define INF 1000000007
#define all(a) (a).begin(),(a).end()
#define per(b)
#define MAX_N 102
#define MAX_V 1785

typedef long long ll;
typedef pair<int,int> p;
typedef pair<p,int> pv;

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

int N,V,Sx,Sy,Gx,Gy;
int L[MAX_N][MAX_N];

bool canProceed(int y, int x) {return 0<=x&&x<N&&0<=y&&y<N;}


ll d[MAX_N][MAX_N][MAX_V];
void bfs(int y, int x, int v){
    queue<pv> q;
    d[y][x][v]=0;
    q.push(pv(p(y,x),v));
    while(!q.empty()){
        pv tmp = q.front();q.pop();
        y=tmp.first.first;x=tmp.first.second;v=tmp.second;
        REP(i,4){
            int ny=y+dy[i],nx=x+dx[i];
            if(!canProceed(ny, nx)) continue;
            int nv=v-L[ny][nx];
            if(nv<=0) continue;
            if(d[ny][nx][nv]) continue;
            if(ny==Gy&&nx==Gx){
                cout << d[y][x][v]+1 << endl;
                return;
            }
            d[ny][nx][nv] = d[y][x][v] + 1;
            q.push(pv(p(ny,nx),nv));
        }
    }
    
    cout << -1 << endl;
    return;
}

int main(){
    ios::sync_with_stdio(false);
    cin >> N >> V >> Sx >> Sy >> Gx >> Gy;
    V=min(V,MAX_V-1);
    Sx--;Sy--;Gx--;Gy--;
    REP(i,N)REP(j,N) cin >> L[i][j];
    bfs(Sy,Sx,V);
    return 0;
}
0