結果
問題 | No.1323 うしらずSwap |
ユーザー | milanis48663220 |
提出日時 | 2020-12-20 13:14:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,929 bytes |
コンパイル時間 | 1,206 ms |
コンパイル使用メモリ | 106,336 KB |
実行使用メモリ | 268,288 KB |
最終ジャッジ日時 | 2024-09-21 11:44:45 |
合計ジャッジ時間 | 29,119 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
86,784 KB |
testcase_01 | AC | 53 ms
86,656 KB |
testcase_02 | WA | - |
testcase_03 | AC | 55 ms
86,784 KB |
testcase_04 | AC | 53 ms
86,784 KB |
testcase_05 | AC | 54 ms
86,656 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 54 ms
86,784 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 55 ms
86,656 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 345 ms
155,276 KB |
testcase_27 | AC | 365 ms
158,368 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1,106 ms
214,784 KB |
testcase_34 | AC | 1,303 ms
234,112 KB |
testcase_35 | AC | 1,372 ms
243,968 KB |
testcase_36 | AC | 1,227 ms
250,112 KB |
testcase_37 | AC | 1,222 ms
252,416 KB |
testcase_38 | AC | 1,407 ms
265,344 KB |
testcase_39 | AC | 1,435 ms
267,392 KB |
testcase_40 | AC | 1,451 ms
267,392 KB |
testcase_41 | AC | 1,450 ms
268,032 KB |
testcase_42 | AC | 1,191 ms
268,288 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; 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; } using namespace std; typedef long long ll; const int INF = 1e+9; typedef pair<int, int> P; struct edge{ int to; int cost; }; void dijkstra(int s, int num_v, vector<edge> G[], int d[]){ priority_queue<P, vector<P>, greater<P>> que; fill(d, d+num_v, INF); d[s] = 0; que.push(P(0, s)); while(!que.empty()){ P p = que.top();que.pop(); int v = p.second; if(d[v] < p.first) continue; for(int i = 0; i < G[v].size(); i++){ edge e = G[v][i]; if(d[v] + e.cost < d[e.to]){ d[e.to] = d[v] + e.cost; que.push(P(d[e.to], e.to)); } } } } int h, w, ra, ca, rb, cb; char s[1500][1500]; int dh[4] = {0, 0, -1, 1}; int dw[4] = {-1, 1, 0, 0}; bool is_in_field(int i, int j){ return i >= 0 && i < h && j >= 0 && j < w; } int to_idx(int i, int j){ return i*w+j; } int to_i(int idx){ return idx/w; } int to_j(int idx){ return idx%w; } void input(){ cin >> h >> w >> ra >> ca >> rb >> cb; ra--; ca--; rb--; cb--; for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ cin >> s[i][j]; } } } vector<edge> G[1333*1333]; int dist[1333*1333]; vector<P> get_shortest_path(){ int cur_h = rb, cur_w = cb; vector<P> ans; ans.push_back(P(cur_h, cur_w)); while(cur_h != ra || cur_w != ca){ for(int i = 0; i < 4; i++){ int h_to = cur_h+dh[i]; int w_to = cur_w+dw[i]; if(is_in_field(h_to, w_to) && dist[to_idx(h_to, w_to)] == dist[to_idx(cur_h, cur_w)]-1){ cur_h = h_to; cur_w = w_to; break; } } ans.push_back(P(cur_h, cur_w)); } return ans; } vector<edge> G_rem[1333*1333]; bool used_in_path[1333][1333]; void make_g_rem(){ for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ if(s[i][j] == '#') continue; for(int k = 0; k < 4; k++){ int i_to = i+dh[k], j_to = j+dw[k]; if(is_in_field(i_to, j_to) && s[i_to][j_to] == '.'){ if(used_in_path[i][j] && used_in_path[i_to][j_to]) continue; G_rem[to_idx(i, j)].push_back((edge){to_idx(i_to, j_to), 1}); } } } } } int dist_rem[1333*1333]; void solve(){ for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ if(s[i][j] == '#') continue; for(int k = 0; k < 4; k++){ int i_to = i+dh[k], j_to = j+dw[k]; if(is_in_field(i_to, j_to) && s[i_to][j_to] == '.'){ G[to_idx(i, j)].push_back((edge){to_idx(i_to, j_to), 1}); } } } } dijkstra(to_idx(ra, ca), h*w, G, dist); if(dist[to_idx(rb, cb)] == INF){ cout << -1 << endl; return; } vector<P> path = get_shortest_path(); for(auto p : path){ used_in_path[p.first][p.second] = true; // cout << p.first << ',' << p.second << endl; } make_g_rem(); // dijkstraっぽい感じ int min_diff = INF; priority_queue<P, vector<P>, greater<P>> que; fill(dist_rem, dist_rem+h*w, INF); for(auto p : path){ int idx = to_idx(p.first, p.second); dist_rem[idx] = dist[idx]; if(p.first == rb && p.second == cb) continue; que.push(P(dist[idx], idx)); } while(!que.empty()){ P p = que.top();que.pop(); int v = p.second; if(dist_rem[v] < p.first) continue; for(int i = 0; i < G_rem[v].size(); i++){ edge e = G_rem[v][i]; if(dist_rem[v] + e.cost < dist_rem[e.to] && e.to != to_idx(rb, cb)){ dist_rem[e.to] = dist_rem[v] + e.cost; que.push(P(dist_rem[e.to], e.to)); } if(used_in_path[to_i(e.to)][to_j(e.to)] && e.to != to_idx(ra, ca)){ chmin(min_diff, dist_rem[v] + e.cost - dist_rem[e.to]); // cout << to_i(v) << ',' << to_j(v) << ' ' << to_i(e.to) << ',' << to_j(e.to) << endl; } } } if(min_diff == INF){ cout << -1 << endl; }else{ cout << 2*dist[to_idx(rb, cb)] << endl; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; input(); solve(); }