結果
問題 | No.1323 うしらずSwap |
ユーザー | milanis48663220 |
提出日時 | 2020-12-20 15:27:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,492 ms / 3,000 ms |
コード長 | 5,946 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 110,412 KB |
実行使用メモリ | 275,036 KB |
最終ジャッジ日時 | 2024-11-15 09:41:10 |
合計ジャッジ時間 | 28,981 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
86,784 KB |
testcase_01 | AC | 35 ms
86,784 KB |
testcase_02 | AC | 36 ms
86,656 KB |
testcase_03 | AC | 36 ms
86,912 KB |
testcase_04 | AC | 35 ms
86,784 KB |
testcase_05 | AC | 36 ms
86,912 KB |
testcase_06 | AC | 36 ms
86,912 KB |
testcase_07 | AC | 35 ms
86,784 KB |
testcase_08 | AC | 37 ms
86,912 KB |
testcase_09 | AC | 36 ms
86,784 KB |
testcase_10 | AC | 36 ms
86,656 KB |
testcase_11 | AC | 35 ms
86,784 KB |
testcase_12 | AC | 35 ms
86,656 KB |
testcase_13 | AC | 36 ms
86,784 KB |
testcase_14 | AC | 35 ms
86,784 KB |
testcase_15 | AC | 36 ms
86,784 KB |
testcase_16 | AC | 316 ms
166,536 KB |
testcase_17 | AC | 492 ms
166,552 KB |
testcase_18 | AC | 305 ms
166,584 KB |
testcase_19 | AC | 548 ms
166,672 KB |
testcase_20 | AC | 303 ms
166,484 KB |
testcase_21 | AC | 346 ms
164,712 KB |
testcase_22 | AC | 575 ms
164,896 KB |
testcase_23 | AC | 345 ms
164,912 KB |
testcase_24 | AC | 633 ms
164,848 KB |
testcase_25 | AC | 343 ms
164,660 KB |
testcase_26 | AC | 375 ms
161,324 KB |
testcase_27 | AC | 404 ms
158,368 KB |
testcase_28 | AC | 551 ms
165,396 KB |
testcase_29 | AC | 328 ms
164,780 KB |
testcase_30 | AC | 415 ms
164,860 KB |
testcase_31 | AC | 324 ms
164,752 KB |
testcase_32 | AC | 491 ms
164,860 KB |
testcase_33 | AC | 1,165 ms
221,584 KB |
testcase_34 | AC | 1,251 ms
240,888 KB |
testcase_35 | AC | 1,374 ms
250,952 KB |
testcase_36 | AC | 1,289 ms
257,260 KB |
testcase_37 | AC | 1,235 ms
259,496 KB |
testcase_38 | AC | 1,396 ms
272,352 KB |
testcase_39 | AC | 1,452 ms
274,108 KB |
testcase_40 | AC | 1,452 ms
274,280 KB |
testcase_41 | AC | 1,492 ms
275,036 KB |
testcase_42 | AC | 1,200 ms
275,008 KB |
testcase_43 | AC | 249 ms
132,552 KB |
testcase_44 | AC | 362 ms
138,556 KB |
testcase_45 | AC | 416 ms
147,436 KB |
testcase_46 | AC | 407 ms
138,040 KB |
testcase_47 | AC | 310 ms
137,800 KB |
testcase_48 | AC | 255 ms
131,872 KB |
testcase_49 | AC | 354 ms
137,100 KB |
testcase_50 | AC | 240 ms
128,004 KB |
testcase_51 | AC | 90 ms
110,436 KB |
testcase_52 | AC | 158 ms
119,752 KB |
testcase_53 | AC | 377 ms
137,456 KB |
testcase_54 | AC | 162 ms
119,628 KB |
testcase_55 | AC | 353 ms
137,380 KB |
testcase_56 | AC | 120 ms
115,176 KB |
testcase_57 | AC | 489 ms
146,620 KB |
testcase_58 | AC | 36 ms
86,912 KB |
testcase_59 | AC | 38 ms
88,960 KB |
testcase_60 | AC | 36 ms
87,168 KB |
testcase_61 | AC | 36 ms
86,912 KB |
ソースコード
#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 calc_dist_three(int from){ vector<int> dist(h*w, INF); queue<int> que; dist[from] = 0; que.push(from); while(!que.empty()){ int v = que.front(); que.pop(); int cnt = 0; int i = to_i(v), j = to_j(v); assert(s[i][j] == '.'); 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] == '.'){ cnt++; if(dist[to_idx(i_to, j_to)] == INF){ dist[to_idx(i_to, j_to)] = dist[v]+1; que.push(to_idx(i_to, j_to)); } } } if(cnt >= 3){ return dist[v]; } } return INF; } 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; } } } assert(min_diff >= 0); int tmp = calc_dist_three(to_idx(ra, ca)); if(tmp != INF) chmin(min_diff, 4*(tmp+1)); tmp = calc_dist_three(to_idx(rb, cb)); if(tmp != INF) chmin(min_diff, 4*(tmp+1)); if(min_diff == INF){ cout << -1 << endl; }else{ cout << 2*dist[to_idx(rb, cb)]+min_diff << endl; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; input(); solve(); }