結果

問題 No.340 雪の足跡
ユーザー rpy3cpprpy3cpp
提出日時 2016-01-30 23:42:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 493 ms / 1,000 ms
コード長 2,488 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 211,836 KB
最終ジャッジ日時 2024-09-21 19:33:01
合計ジャッジ時間 8,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,892 KB
testcase_01 AC 34 ms
53,056 KB
testcase_02 AC 37 ms
52,872 KB
testcase_03 AC 34 ms
53,932 KB
testcase_04 AC 37 ms
53,472 KB
testcase_05 AC 37 ms
52,796 KB
testcase_06 AC 35 ms
53,604 KB
testcase_07 AC 35 ms
53,344 KB
testcase_08 AC 34 ms
53,196 KB
testcase_09 AC 35 ms
53,160 KB
testcase_10 AC 36 ms
52,596 KB
testcase_11 AC 51 ms
67,032 KB
testcase_12 AC 49 ms
65,880 KB
testcase_13 AC 52 ms
67,736 KB
testcase_14 AC 79 ms
86,876 KB
testcase_15 AC 86 ms
87,596 KB
testcase_16 AC 72 ms
79,696 KB
testcase_17 AC 94 ms
89,360 KB
testcase_18 AC 90 ms
89,332 KB
testcase_19 AC 93 ms
89,268 KB
testcase_20 AC 339 ms
202,576 KB
testcase_21 AC 143 ms
79,632 KB
testcase_22 AC 151 ms
188,276 KB
testcase_23 AC 390 ms
211,836 KB
testcase_24 AC 296 ms
206,484 KB
testcase_25 AC 324 ms
189,100 KB
testcase_26 AC 83 ms
77,568 KB
testcase_27 AC 58 ms
71,924 KB
testcase_28 AC 87 ms
80,996 KB
testcase_29 AC 353 ms
142,340 KB
testcase_30 AC 270 ms
127,472 KB
testcase_31 AC 441 ms
180,364 KB
testcase_32 AC 491 ms
208,128 KB
testcase_33 AC 431 ms
205,356 KB
testcase_34 AC 493 ms
207,824 KB
testcase_35 AC 394 ms
188,692 KB
testcase_36 AC 401 ms
188,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

def solve():
    W, H, hsWH, hsHW = read_data()
    hsWH = list(itertools.accumulate(hsWH))
    hsHW = list(itertools.accumulate(hsHW))
    result = wfs(W, H, hsWH, hsHW)
    return result


def read_data():
    W, H, N = map(int, input().split())
    hsWH = [0] * (W * H)  # vertical lines
    hsHW = [0] * (W * H)  # horizontal lines
    lines = sys.stdin.readlines()
    flag = True
    for line in lines:
        flag = not flag
        if flag:
            Bs = list(map(int, line.split()))
            h0, w0 = divmod(Bs[0], W)
            for b in Bs:
                h1, w1 = divmod(b, W)
                if h0 == h1:  # horizontal move
                    if w0 > w1:
                        hsHW[b] += 1
                        hsHW[b + w0 - w1] -= 1
                    else:
                        hsHW[b + w0 - w1] += 1
                        hsHW[b] -= 1
                    w0 = w1
                else:        # vertical move
                    if h0 > h1:
                        hsWH[w1 * H + h1] += 1
                        hsWH[w1 * H + h0] -= 1
                    else:
                        hsWH[w1 * H + h0] += 1
                        hsWH[w1 * H + h1] -= 1
                    h0 = h1
    return W, H, hsWH, hsHW


def wfs(W, H, hsWH, hsHW):
    '''
    (0, 0) から (W-1, H-1) までの最短距離を求める。
    hsWH[w * H + h]: cell(w, h) と cell(w, h+1) に辺があるか否か
    hsHW[h * W + w]: cell(w, h) と cell(w+1, h) に辺があるか否か
    '''
    start = 0
    goal = H * W - 1
    unvisited = [True] * (H * W)
    frontiers = [start]
    cost = 0
    while frontiers:
        cost += 1
        new_frontiers = []
        for f in frontiers:
            if f == goal:
                return cost - 1
            g = (f % W) * H + (f//W)
            if hsWH[g] and unvisited[f + W]:
                unvisited[f + W] = False
                new_frontiers.append(f + W)
            if hsWH[g - 1] and unvisited[f - W]:
                unvisited[f - W] = False
                new_frontiers.append(f - W)
            if hsHW[f] and unvisited[f + 1]:
                unvisited[f + 1] = False
                new_frontiers.append(f + 1)
            if hsHW[f - 1] and unvisited[f - 1]:
                unvisited[f - 1] = False
                new_frontiers.append(f - 1)
        frontiers = new_frontiers
    return -1

ans = solve()
if ans == -1:
    print("Odekakedekinai..")
else:
    print(ans)
0