結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | kuuso1 |
提出日時 | 2016-08-26 00:35:46 |
言語 | F# (F# 4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 10,818 ms |
コンパイル使用メモリ | 198,140 KB |
実行使用メモリ | 61,380 KB |
平均クエリ数 | 34.78 |
最終ジャッジ日時 | 2024-07-16 10:54:42 |
合計ジャッジ時間 | 23,219 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 342 ms
52,156 KB |
testcase_01 | AC | 336 ms
52,384 KB |
testcase_02 | AC | 326 ms
51,540 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 333 ms
51,596 KB |
testcase_10 | RE | - |
testcase_11 | AC | 340 ms
51,828 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 337 ms
51,040 KB |
testcase_17 | AC | 330 ms
51,940 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (285 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/
ソースコード
open System open System.Collections.Generic let ri () = stdin.ReadLine() |> int let ria () = stdin.ReadLine().Split() |> Array.map int let swap a b (xs:'t []) = let tmp = xs.[a] xs.[a] <- xs.[b] xs.[b] <- tmp type Sol() = member this.Solve() = let N = ri () let A = ria () let L = new List<int*int> () for i in 0..(N-2) do let m = A |> Array.skip i |> Array.min let trgt = A |> Array.skip i |> Array.findIndex ( (=) m ) |> (+) i // printfn "%s" (String.Join(" ",A)) // printfn "min: %d" m // printfn "midx:%d" trgt if trgt <> i then ( swap m trgt A ; L.Add(i,trgt) ) L.Count |> printfn "%d" L |> Seq.iter (fun (a,b) -> printfn "%d %d" a b) let dummy = ri() () let mySol = new Sol() mySol.Solve()