結果
問題 | No.2096 Rage With Our Friends |
ユーザー | chineristAC |
提出日時 | 2022-09-15 00:05:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,522 ms / 5,000 ms |
コード長 | 4,147 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 82,720 KB |
実行使用メモリ | 201,856 KB |
最終ジャッジ日時 | 2024-12-15 13:02:34 |
合計ジャッジ時間 | 20,252 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
54,656 KB |
testcase_01 | AC | 46 ms
55,040 KB |
testcase_02 | AC | 48 ms
54,784 KB |
testcase_03 | AC | 46 ms
54,400 KB |
testcase_04 | AC | 46 ms
54,784 KB |
testcase_05 | AC | 46 ms
54,528 KB |
testcase_06 | AC | 46 ms
54,400 KB |
testcase_07 | AC | 46 ms
54,528 KB |
testcase_08 | AC | 51 ms
56,960 KB |
testcase_09 | AC | 47 ms
55,680 KB |
testcase_10 | AC | 47 ms
55,680 KB |
testcase_11 | AC | 493 ms
177,208 KB |
testcase_12 | AC | 1,365 ms
179,624 KB |
testcase_13 | AC | 754 ms
178,000 KB |
testcase_14 | AC | 1,025 ms
178,120 KB |
testcase_15 | AC | 499 ms
177,212 KB |
testcase_16 | AC | 48 ms
55,808 KB |
testcase_17 | AC | 726 ms
184,492 KB |
testcase_18 | AC | 53 ms
56,576 KB |
testcase_19 | AC | 48 ms
56,064 KB |
testcase_20 | AC | 51 ms
57,088 KB |
testcase_21 | AC | 2,374 ms
201,856 KB |
testcase_22 | AC | 2,522 ms
201,796 KB |
testcase_23 | AC | 600 ms
90,292 KB |
testcase_24 | AC | 1,832 ms
160,368 KB |
testcase_25 | AC | 1,715 ms
134,276 KB |
testcase_26 | AC | 1,295 ms
114,120 KB |
testcase_27 | AC | 1,121 ms
112,820 KB |
testcase_28 | AC | 158 ms
78,080 KB |
testcase_29 | AC | 807 ms
99,048 KB |
ソースコード
import sys from collections import * input = lambda :sys.stdin.readline().rstrip() """ 考察の内容 01-BFSでよさそうだけどEを持たなきゃいけなさそう? →前進するとE=0になるので後退→前進の2回分を全探索でよさげ 後退については一番後退せずにすむ点にジャンプするのが得(この後後退する場合もできるだけ前のほうが候補が増える) 前進についてはできるだけ前にだけいった後、好きなだけbackできるように頂点倍化? """ H,W = map(int,input().split()) _,sy,_,gy = map(int,input().split()) sy,gy = sy-1,gy-1 S = [input() for i in range(H)] maxi = [[-1 for j in range(W)] for i in range(H)] for j in range(W): for i in range(H): if i!=0: maxi[i][j] = max(maxi[i][j],maxi[i-1][j]) if S[i][j]==".": maxi[i][j] = i INF = 10**17 """ p=1のとき同じ列でback可能 """ dist = [[INF for j in range(W)] for i in range(H)] dist[0][sy] = 0 deq = deque([(0,sy)]) done = [[False]*W for i in range(H)] while deq: h,w = deq.popleft() if done[h][w]: continue done[h][w] = True """ 前進する """ if 1: if w!=0 and maxi[min(H-1,h+1)][w-1]!=-1: nh = maxi[min(H-1,h+1)][w-1] if dist[nh][w-1] > dist[h][w]: dist[nh][w-1] = dist[h][w] deq.appendleft((nh,w-1)) if w!=W-1 and maxi[min(H-1,h+1)][w+1]!=-1: nh = maxi[min(H-1,h+1)][w+1] if dist[nh][w+1] > dist[h][w]: dist[nh][w+1] = dist[h][w] deq.appendleft((nh,w+1)) """ 後退する """ if w!=0 and maxi[h][w-1]!=-1: nh,nw = maxi[h][w-1],w-1 E = h-nh """ ここからさらに前進する """ if nw!=0 and maxi[min(H-1,nh+1+E//2)][nw-1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E//2)][nw-1],nw-1 if dist[nnh][nnw] > dist[h][w]: dist[nnh][nnw] = dist[h][w] deq.appendleft((nnh,nnw)) if nw!=W-1 and maxi[min(H-1,nh+1+E//2)][nw+1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E//2)][nw+1],nw+1 if dist[nnh][nnw] > dist[h][w]: dist[nnh][nnw] = dist[h][w] deq.appendleft((nnh,nnw)) """ ブースト """ if nw!=0 and maxi[min(H-1,nh+1+E)][nw-1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E)][nw-1],nw-1 if dist[nnh][nnw] > dist[h][w] + 1: dist[nnh][nnw] = dist[h][w] + 1 deq.append((nnh,nnw)) if nw!=W-1 and maxi[min(H-1,nh+1+E)][nw+1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E)][nw+1],nw+1 if dist[nnh][nnw] > dist[h][w] + 1: dist[nnh][nnw] = dist[h][w] + 1 deq.append((nnh,nnw)) if w!=W-1 and maxi[h][w+1]!=-1: nh,nw = maxi[h][w+1],w+1 E = h-nh """ ここからさらに前進する """ if nw!=0 and maxi[min(H-1,nh+1+E//2)][nw-1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E//2)][nw-1],nw-1 if dist[nnh][nnw] > dist[h][w]: dist[nnh][nnw] = dist[h][w] deq.appendleft((nnh,nnw)) if nw!=W-1 and maxi[min(H-1,nh+1+E//2)][nw+1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E//2)][nw+1],nw+1 if dist[nnh][nnw] > dist[h][w]: dist[nnh][nnw] = dist[h][w] deq.appendleft((nnh,nnw)) """ ブースト """ if nw!=0 and maxi[min(H-1,nh+1+E)][nw-1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E)][nw-1],nw-1 if dist[nnh][nnw] > dist[h][w] + 1: dist[nnh][nnw] = dist[h][w] + 1 deq.append((nnh,nnw)) if nw!=W-1 and maxi[min(H-1,nh+1+E)][nw+1]!=-1: nnh,nnw = maxi[min(H-1,nh+1+E)][nw+1],nw+1 if dist[nnh][nnw] > dist[h][w] + 1: dist[nnh][nnw] = dist[h][w] + 1 deq.append((nnh,nnw)) if dist[H-1][gy] == INF: print(-1) else: print(dist[H-1][gy])