結果

問題 No.365 ジェンガソート
ユーザー taktak
提出日時 2019-06-13 13:40:32
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 11,727 ms
コンパイル使用メモリ 186,968 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-10-13 09:27:49
合計ジャッジ時間 20,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,824 KB
testcase_01 AC 57 ms
29,824 KB
testcase_02 AC 56 ms
29,952 KB
testcase_03 AC 57 ms
29,696 KB
testcase_04 AC 57 ms
29,824 KB
testcase_05 AC 58 ms
29,824 KB
testcase_06 AC 58 ms
29,824 KB
testcase_07 AC 60 ms
29,824 KB
testcase_08 AC 57 ms
29,696 KB
testcase_09 AC 59 ms
29,824 KB
testcase_10 WA -
testcase_11 AC 59 ms
29,948 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
29,696 KB
testcase_15 AC 58 ms
30,080 KB
testcase_16 AC 260 ms
72,292 KB
testcase_17 AC 308 ms
78,992 KB
testcase_18 AC 75 ms
36,992 KB
testcase_19 AC 300 ms
78,720 KB
testcase_20 AC 142 ms
60,288 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 304 ms
79,436 KB
testcase_37 AC 306 ms
79,488 KB
testcase_38 WA -
testcase_39 AC 313 ms
79,488 KB
testcase_40 AC 313 ms
79,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 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 #

module Program

open System

let solve a =
    let len = a |> Array.length
    let a' =
        let comp =
            a
            |> Array.sort
            |> Array.indexed 
            |> Array.map (fun (idx, x) -> (x, idx))
            |> Map.ofArray
        a 
        |> Array.map (fun x -> comp.[x] + 1)
    
    let dp = Array.zeroCreate (len + 1)
    a' |> Array.iter (fun a -> dp.[a] <- dp.[a-1] + 1)
    len - (dp |> Array.max)

let N = Console.ReadLine() |> ignore
let a = 
    Console.ReadLine().Split()
    |> Array.map int

solve a
|> Console.WriteLine
0