結果

問題 No.397 NO MORE KADOMATSU
ユーザー kuuso1kuuso1
提出日時 2016-08-26 00:47:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 13,132 ms
コンパイル使用メモリ 197,872 KB
実行使用メモリ 52,152 KB
平均クエリ数 36.83
最終ジャッジ日時 2024-07-17 00:21:18
合計ジャッジ時間 21,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 373 ms
52,120 KB
testcase_01 AC 369 ms
51,612 KB
testcase_02 AC 372 ms
51,156 KB
testcase_03 AC 373 ms
51,428 KB
testcase_04 AC 373 ms
51,744 KB
testcase_05 AC 375 ms
52,152 KB
testcase_06 AC 373 ms
51,296 KB
testcase_07 AC 375 ms
51,108 KB
testcase_08 AC 372 ms
51,784 KB
testcase_09 AC 364 ms
51,732 KB
testcase_10 AC 373 ms
52,032 KB
testcase_11 AC 362 ms
50,536 KB
testcase_12 AC 374 ms
52,048 KB
testcase_13 AC 375 ms
52,040 KB
testcase_14 AC 378 ms
51,328 KB
testcase_15 AC 381 ms
51,504 KB
testcase_16 AC 365 ms
51,416 KB
testcase_17 AC 365 ms
51,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (316 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 #

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 i 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()
0