結果
問題 | No.1638 Robot Maze |
ユーザー | hayaten |
提出日時 | 2021-08-06 22:11:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,706 bytes |
コンパイル時間 | 5,690 ms |
コンパイル使用メモリ | 292,632 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 02:12:48 |
合計ジャッジ時間 | 5,782 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 3 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 4 ms
5,376 KB |
testcase_33 | AC | 4 ms
5,376 KB |
testcase_34 | AC | 5 ms
5,376 KB |
testcase_35 | AC | 4 ms
5,376 KB |
testcase_36 | AC | 4 ms
5,376 KB |
testcase_37 | AC | 4 ms
5,376 KB |
testcase_38 | AC | 4 ms
5,376 KB |
testcase_39 | AC | 5 ms
5,376 KB |
testcase_40 | AC | 4 ms
5,376 KB |
testcase_41 | AC | 5 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | AC | 5 ms
5,376 KB |
testcase_44 | AC | 4 ms
5,376 KB |
testcase_45 | AC | 4 ms
5,376 KB |
testcase_46 | AC | 5 ms
5,376 KB |
testcase_47 | AC | 4 ms
5,376 KB |
testcase_48 | AC | 5 ms
5,376 KB |
testcase_49 | AC | 5 ms
5,376 KB |
testcase_50 | WA | - |
testcase_51 | AC | 4 ms
5,376 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include <bits/stdc++.h> #include <atcoder/all> #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n - 1); i >= 0; i--) #define ALL(v) v.begin(), v.end() #define endl "\n" #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) #define pb push_back #define eb emplace_back using namespace std; using namespace atcoder; using P = pair<int, int>; using PL = pair<long long, long long>; using PP = pair<long long, P>; typedef long long ll; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; const ll INF = (1LL <<60); vector<vector<ll>> dist; vector<vector<P>> pre; vector<P> Route; using Edge = pair <int, ll>; // {行き先, 重み} using Graph = vector<vector<Edge>>; // グラフ vector<ll> dijkstra(const Graph &G, int s){ vector<ll> dist((int)G.size(), INF); vector<vector<int>> prev((int)G.size()); // prev[v] := v から復元できる辺たち dist[s] = 0; priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> que; que.push(make_pair(0, s)); while(!que.empty()) { auto cur = que.top(); que.pop(); ll cur_dist = cur.first; int v = cur.second; if(cur_dist > dist[v]) continue; //枝狩り for(auto e : G[v]) { if(dist[e.first] > dist[v] + e.second){ dist[e.first] = dist[v] + e.second; que.push(make_pair(dist[e.first], e.first)); } } } return dist; } int main() { int h, w; cin >> h >> w; Graph G(h * w); ll u, d, r, l, k, p; cin >> u >> d >> r >> l >> k >> p; int sx, sy, gx, gy; cin >> sx >> sy >> gx >> gy; sx--, sy--, gx--, gy--; vector<string> grid(h); rep(i, h) cin >> grid[i]; rep(i, h)rep(j, w){ int start = i * w + j; int right = start + 1; int under = start + w; ll add1 = 0; ll add2 = 0; if(grid[i][j] == '#')continue; if(j < w-1 && grid[i][j+1] != '#'){ if(grid[i][j+1] == '@')add2 = p; G[start].pb({right, add1 + r + add2}); G[right].pb({start, add1 + l}); } if(i < h-1 && grid[i+1][j] != '#'){ if(grid[i+1][j] == '@')add2 = p; G[start].pb({under, add1 + d + add2}); G[under].pb({start, add1 + u}); } } vector<ll> dist = dijkstra(G, sx * w + sy); if(dist[gx * w + gy] <= k){ cout << "Yes" << endl; }else{ cout << "No" << endl; } }