結果
問題 | No.340 雪の足跡 |
ユーザー | mkawa2 |
提出日時 | 2020-04-29 01:39:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 443 ms / 1,000 ms |
コード長 | 1,945 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 106,624 KB |
最終ジャッジ日時 | 2024-11-26 09:08:58 |
合計ジャッジ時間 | 8,229 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
54,272 KB |
testcase_01 | AC | 41 ms
53,504 KB |
testcase_02 | AC | 42 ms
53,888 KB |
testcase_03 | AC | 40 ms
54,272 KB |
testcase_04 | AC | 40 ms
54,052 KB |
testcase_05 | AC | 41 ms
54,016 KB |
testcase_06 | AC | 41 ms
54,144 KB |
testcase_07 | AC | 41 ms
53,504 KB |
testcase_08 | AC | 42 ms
53,504 KB |
testcase_09 | AC | 41 ms
54,144 KB |
testcase_10 | AC | 41 ms
53,760 KB |
testcase_11 | AC | 61 ms
67,712 KB |
testcase_12 | AC | 62 ms
67,328 KB |
testcase_13 | AC | 65 ms
70,016 KB |
testcase_14 | AC | 98 ms
78,208 KB |
testcase_15 | AC | 106 ms
78,796 KB |
testcase_16 | AC | 91 ms
77,568 KB |
testcase_17 | AC | 113 ms
78,976 KB |
testcase_18 | AC | 109 ms
79,496 KB |
testcase_19 | AC | 112 ms
78,976 KB |
testcase_20 | AC | 288 ms
101,136 KB |
testcase_21 | AC | 161 ms
76,800 KB |
testcase_22 | AC | 58 ms
83,072 KB |
testcase_23 | AC | 323 ms
101,388 KB |
testcase_24 | AC | 231 ms
101,376 KB |
testcase_25 | AC | 280 ms
101,120 KB |
testcase_26 | AC | 103 ms
76,800 KB |
testcase_27 | AC | 66 ms
74,496 KB |
testcase_28 | AC | 104 ms
78,088 KB |
testcase_29 | AC | 371 ms
91,264 KB |
testcase_30 | AC | 281 ms
87,680 KB |
testcase_31 | AC | 411 ms
104,808 KB |
testcase_32 | AC | 443 ms
101,504 KB |
testcase_33 | AC | 394 ms
106,112 KB |
testcase_34 | AC | 435 ms
100,992 KB |
testcase_35 | AC | 361 ms
106,624 KB |
testcase_36 | AC | 351 ms
106,624 KB |
ソースコード
from collections import * import sys sys.setrecursionlimit(10 ** 6) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def SI(): return sys.stdin.readline()[:-1] def main(): w,h,n=MI() if (w,h)==(1,1): print(0) exit() # lrは左右移動、udは上下移動。いもす法の要領で移動可能な区間を記録していく lr=[0]*(w*h+1) ud=[0]*(w*h+1) for _ in range(n): SI() bb=LI() # 区間の始点に+1、終点に-1をしていく for b0,b1 in zip(bb,bb[1:]): if b0>b1:b0,b1=b1,b0 # 左右移動の場合 if b0//w==b1//w: lr[b0+1]+=1 lr[b1+1]-=1 # 上下移動の場合 else: j0=b0%w*h+b0//w j1=b1%w*h+b1//w ud[j0+1]+=1 ud[j1+1]-=1 # 累積和をとって移動可能な区間を求める for i in range(w*h):lr[i+1]+=lr[i] for j in range(w*h):ud[j+1]+=ud[j] #print(lr) #print(ud) q=deque() q.append((0,0)) first=[True]*w*h def finish(d): print(d+1) exit() while q: d,i=q.popleft() j=i%w*h+i//w # 左への移動 if lr[i] and first[i-1]: if i-1==h*w-1:finish(d) first[i-1]=False q.append((d+1,i-1)) # 右への移動 if lr[i+1] and first[i+1]: if i+1==h*w-1:finish(d) first[i+1]=False q.append((d+1,i+1)) # 上への移動 if ud[j+1] and first[i+w]: if i+w==h*w-1:finish(d) first[i+w]=False q.append((d+1,i+w)) # 下への移動 if ud[j] and first[i-w]: if i-w==h*w-1:finish(d) first[i-w]=False q.append((d+1,i-w)) print("Odekakedekinai..") main()