結果

問題 No.647 明太子
ユーザー ichibanshiboriichibanshibori
提出日時 2018-09-20 00:26:59
言語 F#
(F# 4.0)
結果
MLE  
実行時間 -
コード長 1,597 bytes
コンパイル時間 12,783 ms
コンパイル使用メモリ 191,792 KB
実行使用メモリ 380,368 KB
最終ジャッジ日時 2024-07-18 08:23:48
合計ジャッジ時間 26,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
37,364 KB
testcase_01 AC 124 ms
41,244 KB
testcase_02 AC 93 ms
32,488 KB
testcase_03 AC 124 ms
34,304 KB
testcase_04 AC 123 ms
34,168 KB
testcase_05 AC 131 ms
34,040 KB
testcase_06 AC 132 ms
34,432 KB
testcase_07 AC 136 ms
36,992 KB
testcase_08 AC 130 ms
36,480 KB
testcase_09 AC 543 ms
127,572 KB
testcase_10 AC 1,535 ms
206,544 KB
testcase_11 AC 363 ms
79,920 KB
testcase_12 AC 976 ms
176,936 KB
testcase_13 AC 2,160 ms
130,500 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (301 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 solve abLst xyLst =
    let m = List.length xyLst

    let chooseLst =
        seq abLst
        |> Seq.map (fun (a, b) -> Seq.init m (fun i -> (a, b, xyLst.[i])))
        |> Seq.concat
        |> Seq.map
            (fun (a, b, (i, x, y)) ->
                async {
                    return
                        if (x <= a) && (y >= b) then
                            Some(i)
                        else
                            None
                })
        |> Async.Parallel
        |> Async.RunSynchronously
        |> Array.toSeq
        |> Seq.choose id
        |> Seq.countBy id
        |> Seq.sortBy (fun (i, iCnt) -> (-iCnt, i))
        |> Seq.toList

    if List.isEmpty chooseLst then
        stdout.WriteLine(0)
    else
        let maxCnt = List.map (fun (i, iCnt) -> iCnt) chooseLst |> List.max
        List.filter (fun (i, iCnt) -> iCnt = maxCnt) chooseLst
        |> List.iter (fun (i, iCnt) -> printfn "%A" i)

let () =
    let n = stdin.ReadLine() |> int
    let abLst =
        seq {
            for i in 1..n do
                let ab =
                    stdin.ReadLine()
                    |> fun s -> s.Split()
                    |> fun arr -> (int arr.[0], int arr.[1])
                yield ab }
        |> Seq.toList
    let m = stdin.ReadLine() |> int
    let xyLst =
        seq {
            for i in 1..m do
                let xy =
                    stdin.ReadLine()
                    |> fun s -> s.Split()
                    |> fun arr -> (i, int arr.[0], int arr.[1])
                yield xy }
        |> Seq.toList

    solve abLst xyLst
0