結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 750 ms
112,484 KB
testcase_12 AC 954 ms
121,856 KB
testcase_13 AC 701 ms
104,192 KB
testcase_14 AC 97 ms
13,980 KB
testcase_15 AC 594 ms
66,672 KB
testcase_16 AC 1,200 ms
106,624 KB
testcase_17 AC 164 ms
23,808 KB
testcase_18 AC 1,517 ms
135,368 KB
testcase_19 AC 548 ms
59,044 KB
testcase_20 AC 105 ms
15,744 KB
testcase_21 AC 17 ms
6,816 KB
testcase_22 AC 31 ms
8,832 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 762 ms
87,808 KB
testcase_25 AC 1,227 ms
161,536 KB
testcase_26 AC 1,427 ms
172,400 KB
testcase_27 AC 1,351 ms
124,664 KB
testcase_28 AC 1,708 ms
172,668 KB
testcase_29 AC 787 ms
77,184 KB
testcase_30 AC 210 ms
27,136 KB
testcase_31 AC 43 ms
27,264 KB
testcase_32 AC 1,272 ms
124,668 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 = Array.init n     (fun _ -> get_int ()) in
    Array.sort (fun x y -> compare y x) d;
    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