結果

問題 No.424 立体迷路
ユーザー pekempeypekempey
提出日時 2017-01-27 20:37:28
言語 F#
(F# 4.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,544 bytes
コンパイル時間 7,610 ms
コンパイル使用メモリ 190,780 KB
実行使用メモリ 32,896 KB
最終ジャッジ日時 2024-07-05 07:13:47
合計ジャッジ時間 9,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,336 KB
testcase_01 AC 49 ms
30,336 KB
testcase_02 AC 49 ms
30,464 KB
testcase_03 AC 49 ms
30,720 KB
testcase_04 AC 49 ms
30,460 KB
testcase_05 AC 50 ms
30,464 KB
testcase_06 AC 48 ms
30,464 KB
testcase_07 AC 48 ms
30,208 KB
testcase_08 AC 48 ms
30,208 KB
testcase_09 AC 49 ms
30,200 KB
testcase_10 AC 52 ms
30,592 KB
testcase_11 AC 50 ms
30,460 KB
testcase_12 AC 50 ms
30,460 KB
testcase_13 AC 50 ms
30,460 KB
testcase_14 AC 50 ms
30,720 KB
testcase_15 AC 50 ms
30,464 KB
testcase_16 AC 49 ms
30,588 KB
testcase_17 AC 55 ms
32,512 KB
testcase_18 AC 56 ms
32,640 KB
testcase_19 AC 58 ms
32,768 KB
testcase_20 AC 55 ms
32,896 KB
testcase_21 AC 49 ms
30,464 KB
testcase_22 AC 49 ms
30,568 KB
testcase_23 AC 48 ms
30,464 KB
testcase_24 AC 54 ms
32,640 KB
testcase_25 AC 56 ms
32,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (192 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

type UnionFind(n) =
    let n = n
    let parent = [| 0 .. n - 1|]

    member this.Parent with get() = parent

    member this.Find x = 
        if this.Parent.[x] <> x then
            this.Parent.[x] <- this.Find this.Parent.[x]
        this.Parent.[x]

    member this.Unite x y =
        this.Parent.[this.Find x] <- this.Find y

    member this.Same x y = (this.Find x) = (this.Find y)

let h, w = System.Console.ReadLine().Split() |> Array.map int |> fun a -> a.[0], a.[1]
let sy, sx, gy, gx = System.Console.ReadLine().Split() |> Array.map int |> Array.map ((+) -1) |> fun a -> a.[0], a.[1], a.[2], a.[3]

let b = [|for i in 0 .. h - 1 -> System.Console.ReadLine().ToCharArray() |> Array.map int|]

let uf = new UnionFind(h * w)

for i = 0 to h - 1 do
    for j = 0 to w - 1 do
        for di, dj in [(0, 1); (1, 0); (0, -1); (-1, 0)] do
            let ii = i + di
            let jj = j + dj
            if 0 <= ii && ii < h && 0 <= jj && jj < w then
                if abs (b.[ii].[jj] - b.[i].[j]) <= 1 then
                    uf.Unite (i * w + j) (ii * w + jj)
        for di, dj in [(0, 1); (1, 0); (0, -1); (-1, 0)] do
            let ii = i + di
            let jj = j + dj
            let iii = i + di * 2
            let jjj = j + dj * 2
            if 0 <= iii && iii < h && 0 <= jjj && jjj < w then
                if b.[ii].[jj] < b.[i].[j] && b.[iii].[jjj] = b.[i].[j] then
                    uf.Unite (i * w + j) (iii * w + jjj)

if uf.Same (sy * w + sx) (gy * w + gx) then "YES" else "NO"
|> System.Console.WriteLine
0