結果

問題 No.1338 Giant Class
ユーザー natoriusannatoriusan
提出日時 2023-07-30 23:56:03
言語 F#
(F# 4.0)
結果
AC  
実行時間 1,058 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 6,865 ms
コンパイル使用メモリ 205,816 KB
実行使用メモリ 62,944 KB
最終ジャッジ日時 2024-10-09 18:53:02
合計ジャッジ時間 24,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,144 KB
testcase_01 AC 340 ms
34,680 KB
testcase_02 AC 848 ms
57,524 KB
testcase_03 AC 339 ms
34,000 KB
testcase_04 AC 341 ms
34,136 KB
testcase_05 AC 340 ms
34,008 KB
testcase_06 AC 786 ms
61,228 KB
testcase_07 AC 985 ms
61,780 KB
testcase_08 AC 747 ms
61,292 KB
testcase_09 AC 718 ms
59,316 KB
testcase_10 AC 1,042 ms
62,628 KB
testcase_11 AC 400 ms
44,856 KB
testcase_12 AC 839 ms
59,188 KB
testcase_13 AC 747 ms
61,108 KB
testcase_14 AC 447 ms
52,280 KB
testcase_15 AC 505 ms
58,416 KB
testcase_16 AC 393 ms
42,932 KB
testcase_17 AC 751 ms
61,240 KB
testcase_18 AC 446 ms
51,760 KB
testcase_19 AC 524 ms
58,552 KB
testcase_20 AC 1,051 ms
62,720 KB
testcase_21 AC 1,058 ms
62,944 KB
testcase_22 AC 1,042 ms
62,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (225 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(1,5): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
/home/judge/data/code/Main.fs(8,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let [|h; w; q|] = stdin.ReadLine().Split " " |> Array.map int


let mutable available = (int64 h) * (int64 w)
let mutable M = Map.empty

for _ in 0..q-1 do
    let [|y; x|] = stdin.ReadLine().Split " " |> Array.map int
    let minus =
        if Map.containsKey (x-1) M then
            let m = M.[x-1] - y
            if m < 0 then
                0
            else
                M <- M.Add (x-1, y)
                m
        else
            M <- M.Add (x-1, y)
            (h+1) - y
    available <- available - (int64 minus)
    printfn "%d" available
    
    
// let arr =
//     [|
//         for i in 0..q-1 ->
//             let [|y; x|] = stdin.ReadLine().Split " " |> Array.map int
//             x, y
//     |] |> Array.sort |> Array.rev
//     
// let rec count prev_x value index =
//     if index = arr.Length then
//         value
//     else
//         let x, y = arr.[index]
//         if prev_x <> x then
//             count x (value+y) (index+1)
//         else
//             count x value (index+1)
//             
// count -1 0 0 |> printfn "%d"
0