結果
問題 | No.2096 Rage With Our Friends |
ユーザー | chineristAC |
提出日時 | 2022-09-15 00:05:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,475 ms / 5,000 ms |
コード長 | 4,147 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 82,816 KB |
実行使用メモリ | 202,236 KB |
最終ジャッジ日時 | 2024-05-09 03:43:26 |
合計ジャッジ時間 | 19,380 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
54,656 KB |
testcase_01 | AC | 44 ms
54,784 KB |
testcase_02 | AC | 45 ms
54,656 KB |
testcase_03 | AC | 46 ms
54,912 KB |
testcase_04 | AC | 44 ms
55,040 KB |
testcase_05 | AC | 45 ms
54,820 KB |
testcase_06 | AC | 45 ms
54,656 KB |
testcase_07 | AC | 44 ms
54,656 KB |
testcase_08 | AC | 50 ms
56,704 KB |
testcase_09 | AC | 46 ms
55,680 KB |
testcase_10 | AC | 46 ms
55,936 KB |
testcase_11 | AC | 464 ms
177,468 KB |
testcase_12 | AC | 1,295 ms
179,752 KB |
testcase_13 | AC | 713 ms
178,256 KB |
testcase_14 | AC | 969 ms
178,376 KB |
testcase_15 | AC | 462 ms
177,212 KB |
testcase_16 | AC | 45 ms
55,936 KB |
testcase_17 | AC | 700 ms
184,624 KB |
testcase_18 | AC | 47 ms
56,704 KB |
testcase_19 | AC | 46 ms
55,936 KB |
testcase_20 | AC | 49 ms
56,960 KB |
testcase_21 | AC | 2,391 ms
202,236 KB |
testcase_22 | AC | 2,475 ms
202,052 KB |
testcase_23 | AC | 558 ms
90,524 KB |
testcase_24 | AC | 1,836 ms
160,632 KB |
testcase_25 | AC | 1,687 ms
134,396 KB |
testcase_26 | AC | 1,224 ms
114,252 KB |
testcase_27 | AC | 1,085 ms
112,956 KB |
testcase_28 | AC | 152 ms
78,216 KB |
testcase_29 | AC | 798 ms
99,416 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])