結果

問題 No.340 雪の足跡
ユーザー mkawa2mkawa2
提出日時 2020-04-29 01:32:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 2,357 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 13,184 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-11-26 08:56:39
合計ジャッジ時間 23,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,256 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 34 ms
11,008 KB
testcase_05 WA -
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 30 ms
11,136 KB
testcase_09 AC 30 ms
11,136 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 37 ms
11,136 KB
testcase_12 AC 35 ms
11,264 KB
testcase_13 AC 37 ms
11,136 KB
testcase_14 AC 139 ms
12,672 KB
testcase_15 AC 151 ms
13,056 KB
testcase_16 AC 98 ms
11,904 KB
testcase_17 AC 182 ms
13,312 KB
testcase_18 AC 177 ms
13,184 KB
testcase_19 AC 181 ms
13,184 KB
testcase_20 TLE -
testcase_21 AC 480 ms
11,136 KB
testcase_22 AC 235 ms
34,468 KB
testcase_23 TLE -
testcase_24 AC 832 ms
35,052 KB
testcase_25 TLE -
testcase_26 AC 159 ms
11,904 KB
testcase_27 AC 52 ms
11,264 KB
testcase_28 AC 167 ms
12,288 KB
testcase_29 TLE -
testcase_30 AC 999 ms
23,484 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
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 LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    w,h,n=MI()
    # 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()
0