結果
問題 | No.34 砂漠の行商人 |
ユーザー | togari_takamoto |
提出日時 | 2016-02-26 13:32:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,773 ms / 5,000 ms |
コード長 | 1,395 bytes |
コンパイル時間 | 1,564 ms |
コンパイル使用メモリ | 174,360 KB |
実行使用メモリ | 7,628 KB |
最終ジャッジ日時 | 2024-06-28 10:28:09 |
合計ジャッジ時間 | 9,191 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 44 ms
5,376 KB |
testcase_05 | AC | 41 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 73 ms
5,376 KB |
testcase_08 | AC | 103 ms
5,376 KB |
testcase_09 | AC | 546 ms
5,532 KB |
testcase_10 | AC | 71 ms
5,376 KB |
testcase_11 | AC | 217 ms
5,376 KB |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | AC | 1,773 ms
7,628 KB |
testcase_14 | AC | 1,441 ms
7,624 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 88 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 491 ms
5,568 KB |
testcase_20 | AC | 862 ms
7,620 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 11 ms
5,376 KB |
testcase_23 | AC | 4 ms
5,376 KB |
testcase_24 | AC | 948 ms
5,568 KB |
testcase_25 | AC | 63 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vb = vector<bool>; using vd = vector<double>; using vl = vector<ll>; using vvi = vector<vi>; using vvb = vector<vb>; using vvd = vector<vd>; using vvl = vector<vl>; #define REP(i,n) for(ll i=0; i<(n); ++i) int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; bool contain(ll n, ll x) { return 0 <= x && x < n; } int main() { ll n, v, sx, sy, gx, gy; cin >> n >> v >> sx >> sy >> gx >> gy; sx--; sy--; gx--; gy--; vvi field(n, vi(n)); REP(y, n) REP(x, n) cin >> field[y][x]; vvl vital(n, vl(n, 0)); using P = pair<ll, pair<ll, pair<ll,ll>>>; priority_queue<P, vector<P>, greater<P>> que; que.push({0, {v, {sx, sy}}}); while (!que.empty()) { auto _ = que.top(); que.pop(); ll times = _.first; ll cur_v = _.second.first; auto pos = _.second.second; if (pos.first == gx && pos.second == gy) { cout << times << endl; return 0; } if (vital[pos.second][pos.first] >= cur_v) continue; vital[pos.second][pos.first] = cur_v; REP(i, 4) { auto n_pos = make_pair(pos.first + dx[i], pos.second + dy[i]); if (!contain(n, n_pos.first) || !contain(n, n_pos.second)) continue; ll n_v = cur_v - field[n_pos.second][n_pos.first]; if(n_v > vital[n_pos.second][n_pos.first]) que.push({ times + 1, { n_v, n_pos } }); } } cout << -1 << endl; return 0; }