結果

問題 No.34 砂漠の行商人
ユーザー parukiparuki
提出日時 2016-10-07 17:09:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,169 ms / 5,000 ms
コード長 1,383 bytes
コンパイル時間 1,696 ms
コンパイル使用メモリ 175,700 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-06-28 10:33:23
合計ジャッジ時間 7,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 21 ms
12,416 KB
testcase_05 AC 25 ms
15,744 KB
testcase_06 AC 10 ms
10,240 KB
testcase_07 AC 40 ms
24,320 KB
testcase_08 AC 50 ms
28,288 KB
testcase_09 AC 341 ms
32,640 KB
testcase_10 AC 42 ms
23,680 KB
testcase_11 AC 1,043 ms
58,368 KB
testcase_12 AC 14 ms
8,704 KB
testcase_13 AC 1,169 ms
61,056 KB
testcase_14 AC 871 ms
55,168 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 58 ms
14,208 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 8 ms
5,760 KB
testcase_19 AC 264 ms
38,528 KB
testcase_20 AC 441 ms
46,592 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 11 ms
7,424 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 625 ms
49,536 KB
testcase_25 AC 37 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define mt make_tuple
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

const int DY[] = {-1,0,1,0};
const int DX[] = {0,1,0,-1};

int N, V, SX, SY, GX, GY, L[100][100];
bool vis[100][100][10001];

int main(){
    cin >> N >> V >> SX >> SY >> GX >> GY;
    --SX; --SY; --GX; --GY;
    rep(i, N)rep(j, N)scanf("%d", &L[i][j]);

    queue<tuple<int, int, int, int>> q;
    q.push(mt(0, SY, SX, V));
    while(sz(q)){
        int d, y, x, v;
        tie(d, y, x, v) = q.front(); q.pop();
        if(y == GY&&x == GX){
            cout << d << endl;
            return 0;
        }
        if(vis[y][x][v])continue;
        vis[y][x][v] = 1;
        rep(i, 4){
            int ny = DY[i] + y, nx = DX[i] + x;
            if(ny >= 0 && ny < N&&nx >= 0 && nx < N){
                int nv = v - L[ny][nx];
                if(nv > 0 && !vis[ny][nx][nv])q.push(mt(d + 1, ny, nx, nv));
            }
        }
    }
    puts("-1");
}
0