結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー pekempeypekempey
提出日時 2019-12-12 02:18:24
言語 OCaml
(5.1.0)
結果
AC  
実行時間 1,690 ms / 2,500 ms
コード長 1,034 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 21,544 KB
実行使用メモリ 156,544 KB
最終ジャッジ日時 2024-10-09 00:53:58
合計ジャッジ時間 17,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 9 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 740 ms
87,040 KB
testcase_12 AC 963 ms
113,152 KB
testcase_13 AC 716 ms
104,960 KB
testcase_14 AC 99 ms
14,184 KB
testcase_15 AC 609 ms
58,888 KB
testcase_16 AC 1,229 ms
124,056 KB
testcase_17 AC 163 ms
23,552 KB
testcase_18 AC 1,547 ms
138,624 KB
testcase_19 AC 549 ms
61,160 KB
testcase_20 AC 105 ms
16,256 KB
testcase_21 AC 17 ms
6,912 KB
testcase_22 AC 30 ms
8,960 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 772 ms
77,056 KB
testcase_25 AC 1,244 ms
156,160 KB
testcase_26 AC 1,422 ms
156,544 KB
testcase_27 AC 1,382 ms
138,624 KB
testcase_28 AC 1,690 ms
156,544 KB
testcase_29 AC 807 ms
85,332 KB
testcase_30 AC 228 ms
39,424 KB
testcase_31 AC 46 ms
29,184 KB
testcase_32 AC 1,306 ms
146,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let get_int () = Scanf.scanf " %d" (fun x -> x) ;;

let () = 
    let n = get_int () in
    let a = Array.init (n+1) (fun _ -> get_int ()) in
    let b = Array.init (n+1) (fun _ -> get_int ()) in
    let d = List.init n      (fun _ -> get_int ()) |> List.sort (fun x y -> compare y x) |> Array.of_list in
    let l = ref 0 in
    let r = ref (n+1) in
    while !r - !l > 1 do
        let m = (!l + !r)/2 in
        let dp = Array.make_matrix (m+1) (m+1) false in
        dp.(0).(0) <- true;
        for i=0 to m-1 do for j=0 to m-1 do
            if i+j<m && dp.(i).(j) then begin
                if a.(i+1) + b.(j) >= d.(i+j+n-m) then
                    dp.(i+1).(j) <- true;
                if a.(i) + b.(j+1) >= d.(i+j+n-m) then
                    dp.(i).(j+1) <- true;
            end
        done done;
        let mx = ref 0 in
        for i=0 to m do for j=0 to m do
            if dp.(i).(j) then mx := max !mx (i+j)
        done done;
        if !mx = m then l := m else r := m
    done;
    Printf.printf "%d\n" !l
    ;;
0