結果

問題 No.2928 Gridpath
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-12 16:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,572 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 78,508 KB
最終ジャッジ日時 2024-10-12 16:21:44
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,728 KB
testcase_01 AC 39 ms
58,048 KB
testcase_02 AC 108 ms
78,052 KB
testcase_03 AC 42 ms
57,936 KB
testcase_04 AC 40 ms
56,412 KB
testcase_05 AC 53 ms
66,368 KB
testcase_06 AC 101 ms
77,436 KB
testcase_07 AC 43 ms
56,396 KB
testcase_08 AC 45 ms
55,940 KB
testcase_09 AC 84 ms
77,372 KB
testcase_10 AC 43 ms
56,776 KB
testcase_11 AC 41 ms
56,176 KB
testcase_12 AC 40 ms
56,844 KB
testcase_13 AC 40 ms
57,296 KB
testcase_14 AC 38 ms
56,104 KB
testcase_15 AC 116 ms
78,132 KB
testcase_16 AC 109 ms
77,900 KB
testcase_17 AC 109 ms
77,480 KB
testcase_18 AC 114 ms
78,508 KB
testcase_19 AC 145 ms
78,392 KB
testcase_20 AC 41 ms
56,552 KB
testcase_21 AC 127 ms
78,128 KB
testcase_22 AC 119 ms
78,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
# from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

def ok(ni, nj, i, j):
    if not (0 <= ni < H and 0 <= nj < W) or been[ni][nj]: return False
    for di, dj in D:
        if not (0 <= ni+di < H and 0 <= nj+dj < W): continue
        if ni+di == i and nj+dj == j: continue
        if been[ni+di][nj+dj]: return False
    return True

H, W = map(int, input().split())
si, sj = map(lambda x: int(x)-1, input().split())
ti, tj = map(lambda x: int(x)-1, input().split())

D = [(0, 1), (0, -1), (1, 0), (-1, 0)]
been = [[False]*W for _ in range(H)]
stack = [(si, sj)]
ans = 0
while stack:
    i, j = stack.pop()
    if i >= 0:
        if i == ti and j == tj:
            ans += 1
            continue
        been[i][j] = True
        stack.append((~i, j))
        for di, dj in D:
            ni, nj = i+di, j+dj
            if ok(ni, nj, i, j):
                stack.append((ni, nj))
    else:
        i = ~i
        been[i][j] = False
print(ans)
0