結果
問題 | No.865 24時間降水量 |
ユーザー | pekempey |
提出日時 | 2019-08-17 01:56:16 |
言語 | OCaml (5.1.0) |
結果 |
AC
|
実行時間 | 1,732 ms / 2,000 ms |
コード長 | 1,403 bytes |
コンパイル時間 | 403 ms |
コンパイル使用メモリ | 21,548 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-09 00:48:54 |
合計ジャッジ時間 | 6,976 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 7 ms
5,248 KB |
testcase_06 | AC | 8 ms
5,248 KB |
testcase_07 | AC | 7 ms
5,248 KB |
testcase_08 | AC | 8 ms
5,248 KB |
testcase_09 | AC | 8 ms
5,248 KB |
testcase_10 | AC | 61 ms
5,760 KB |
testcase_11 | AC | 57 ms
5,760 KB |
testcase_12 | AC | 57 ms
5,760 KB |
testcase_13 | AC | 59 ms
5,760 KB |
testcase_14 | AC | 60 ms
5,760 KB |
testcase_15 | AC | 1,723 ms
10,624 KB |
testcase_16 | AC | 1,732 ms
10,464 KB |
testcase_17 | AC | 1,686 ms
10,432 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
open Scanf open Printf let readint () = scanf " %d" (fun x -> x) type rmq = { dat : int array; n : int } module RMQ = struct let make (n : int) : rmq = let rec f x = if x >= n then x else f (x * 2) in { dat = Array.make (2 * f n) min_int; n = f n } let update (rmq : rmq) (k : int) (v : int) = rmq.dat.(k + rmq.n) <- v; let rec f k = if k >= 1 then begin rmq.dat.(k) <- max rmq.dat.(k * 2) rmq.dat.(k * 2 + 1); f (k lsr 1) end in f ((k + rmq.n) lsr 1) let query (rmq : rmq) (l : int) (r : int) = let ans = ref min_int in let rec f l r = if l <= r then begin if (l land 1) = 1 then (ans := max !ans rmq.dat.(l)); if (r land 1) = 0 then (ans := max !ans rmq.dat.(r)); f ((l + l land 1) lsr 1) ((r - r land 1) lsr 1) end in f (l + rmq.n) (r + rmq.n - 1); !ans end;; let () = let n = readint () in let a = Array.init n (fun _ -> readint ()) in let q = readint () in let rmq = RMQ.make (n - 24 + 1) in let calc i = let ans = ref 0 in for j = 0 to 23 do ans := !ans + a.(i + j) done; !ans in for i = 0 to n - 24 do RMQ.update rmq i (calc i); done; for _ = 0 to q - 1 do let t = readint () - 1 and v = readint () in a.(t) <- v; for i = min (n - 24) t downto max 0 (t - 23) do RMQ.update rmq i (calc i); done; printf "%d\n" (RMQ.query rmq 0 (n - 24 + 1)) done;