結果

問題 No.133 カードゲーム
ユーザー dsudodsudo
提出日時 2024-05-20 20:55:39
言語 F#
(F# 4.0)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 987 bytes
コンパイル時間 8,804 ms
コンパイル使用メモリ 195,336 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-05-20 20:55:53
合計ジャッジ時間 12,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
32,640 KB
testcase_01 AC 104 ms
32,512 KB
testcase_02 AC 105 ms
32,768 KB
testcase_03 AC 103 ms
32,640 KB
testcase_04 AC 104 ms
33,024 KB
testcase_05 AC 106 ms
33,024 KB
testcase_06 AC 106 ms
33,024 KB
testcase_07 AC 105 ms
33,152 KB
testcase_08 AC 114 ms
33,000 KB
testcase_09 AC 104 ms
33,024 KB
testcase_10 AC 105 ms
33,280 KB
testcase_11 AC 104 ms
33,124 KB
testcase_12 AC 104 ms
32,896 KB
testcase_13 AC 102 ms
32,640 KB
testcase_14 AC 103 ms
32,768 KB
testcase_15 AC 103 ms
33,020 KB
testcase_16 AC 105 ms
33,152 KB
testcase_17 AC 106 ms
33,024 KB
testcase_18 AC 106 ms
33,152 KB
testcase_19 AC 116 ms
32,896 KB
testcase_20 AC 107 ms
33,024 KB
testcase_21 AC 106 ms
33,256 KB
testcase_22 AC 107 ms
33,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (259 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 #

let permute =
  let rec loop1 x = function
    | []              -> [[x]]
    | (y :: ys) as xs -> (x :: xs) :: (List.map (fun x -> y :: x) (loop1 x ys))
  let rec loop2 = function
    | []      -> seq [List.empty]
    | x :: xs -> Seq.collect (loop1 x) (loop2 xs)
  loop2

let multiplyZip arr1 arr2 = arr1 |> Seq.collect (fun x1 -> arr2 |> Seq.map (fun x2 -> (x1, x2)))

// ----

let _ = stdin.ReadLine() |> int
let a = stdin.ReadLine().Split() |> Seq.map int |> Seq.toList
let b = stdin.ReadLine().Split() |> Seq.map int |> Seq.toList

let pa = a |> permute // [[2; 4]; [4; 2]]
let pb = b |> permute // [[1; 3]; [3; 1]]

multiplyZip pa pb
// [([2; 4], [1; 3]); ([2; 4], [3; 1]); ([4; 2], [1; 3]); ([4; 2], [3; 1])]
|> Seq.map (fun (a, b) -> Seq.zip a b)
// [[(2, 1); (4, 3)]; [(2, 3); (4, 1)]; [(4, 1); (2, 3)]; [(4, 3); (2, 1)]]
|> Seq.map (Seq.sumBy (fun (a, b) -> if a > b then 1 else -1))
// [2; 0; 0; 2]
|> Seq.averageBy (fun x -> if x > 0 then 1. else 0.)
// 0.5
|> printfn "%A"
0