結果

問題 No.34 砂漠の行商人
ユーザー latte0119latte0119
提出日時 2016-02-26 01:21:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,014 ms / 5,000 ms
コード長 1,506 bytes
コンパイル時間 1,484 ms
コンパイル使用メモリ 163,296 KB
実行使用メモリ 162,432 KB
最終ジャッジ日時 2024-06-28 10:28:51
合計ジャッジ時間 15,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
159,616 KB
testcase_01 AC 96 ms
159,616 KB
testcase_02 AC 97 ms
159,568 KB
testcase_03 AC 97 ms
159,744 KB
testcase_04 AC 105 ms
159,744 KB
testcase_05 AC 106 ms
159,744 KB
testcase_06 AC 97 ms
159,616 KB
testcase_07 AC 111 ms
159,872 KB
testcase_08 AC 117 ms
159,744 KB
testcase_09 AC 795 ms
161,168 KB
testcase_10 AC 2,014 ms
160,128 KB
testcase_11 AC 1,211 ms
161,688 KB
testcase_12 AC 106 ms
160,000 KB
testcase_13 AC 1,461 ms
162,432 KB
testcase_14 AC 1,548 ms
162,304 KB
testcase_15 AC 415 ms
160,504 KB
testcase_16 AC 398 ms
160,424 KB
testcase_17 AC 504 ms
161,280 KB
testcase_18 AC 151 ms
159,744 KB
testcase_19 AC 325 ms
161,536 KB
testcase_20 AC 565 ms
162,308 KB
testcase_21 AC 97 ms
159,836 KB
testcase_22 AC 644 ms
161,664 KB
testcase_23 AC 555 ms
160,640 KB
testcase_24 AC 1,415 ms
162,048 KB
testcase_25 AC 130 ms
160,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ln <<endl
#define all(v) (v).begin(),(v).end()
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
template<class T,class U>void chmin(T &t,U f){if(t>f)t=f;}
template<class T,class U>void chmax(T &t,U f){if(t<f)t=f;}

struct data{
    int y,x,h;
    data(int y,int x,int h):y(y),x(x),h(h){}
};

int dxy[]={0,-1,0,1,0};

int N,V,sx,sy,gx,gy;
int L[100][100];
int dist[100][100][2000];
signed main(){
    cin>>N>>V>>sx>>sy>>gx>>gy;sx--;sy--;gx--;gy--;
    chmin(V,2000);
    rep(i,N)rep(j,N)cin>>L[i][j];

    queue<data>que;
    que.push(data(sy,sx,0));
    fill_n(**dist,100*100*2000,1<<25);
    dist[sy][sx][0]=0;

    while(que.size()){
        data d=que.front();que.pop();
        rep(i,4){
            int ny=d.y+dxy[i],nx=d.x+dxy[i+1];
            if(ny<0||ny>=N||nx<0||nx>=N)continue;
            int nh=d.h+L[ny][nx];
            if(nh>=V||dist[ny][nx][nh]<=dist[d.y][d.x][d.h]+1)continue;
            dist[ny][nx][nh]=dist[d.y][d.x][d.h]+1;
            que.push(data(ny,nx,nh));
        }
    }

    int mi=1<<25;
    rep(i,V)chmin(mi,dist[gy][gx][i]);
    if(mi==(1<<25))cout<<-1<<endl;
    else cout<<mi<<endl;
    return 0;
}
0