結果

問題 No.905 Sorted?
ユーザー guriceringuricerin
提出日時 2020-02-12 13:11:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 1,675 bytes
コンパイル時間 7,931 ms
コンパイル使用メモリ 201,704 KB
実行使用メモリ 79,304 KB
最終ジャッジ日時 2024-10-03 07:52:52
合計ジャッジ時間 18,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
34,196 KB
testcase_01 AC 305 ms
34,460 KB
testcase_02 AC 299 ms
34,640 KB
testcase_03 AC 297 ms
33,952 KB
testcase_04 AC 314 ms
34,172 KB
testcase_05 AC 308 ms
35,096 KB
testcase_06 AC 304 ms
34,500 KB
testcase_07 AC 309 ms
35,744 KB
testcase_08 AC 420 ms
70,172 KB
testcase_09 AC 402 ms
67,196 KB
testcase_10 AC 409 ms
76,920 KB
testcase_11 AC 421 ms
68,608 KB
testcase_12 AC 420 ms
67,840 KB
testcase_13 AC 441 ms
79,144 KB
testcase_14 AC 422 ms
79,304 KB
testcase_15 AC 430 ms
70,076 KB
testcase_16 AC 445 ms
75,548 KB
testcase_17 AC 437 ms
74,592 KB
testcase_18 AC 414 ms
71,288 KB
testcase_19 AC 301 ms
34,732 KB
testcase_20 AC 303 ms
34,328 KB
testcase_21 AC 340 ms
34,452 KB
testcase_22 AC 308 ms
34,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (231 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(37,13): 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 #

open System
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

// -----------------------------------------------------------------------------------------------------

// -----------------------------------------------------------------------------------------------------

let main() =
    let n = read int
    let bs = reada int64
    let fs = Array.zeroCreate (n + 1)
    let gs = Array.zeroCreate (n + 1)
    for i in 0 .. n - 2 do
        if bs.[i] <= bs.[i + 1] then fs.[i] <- 1L
        if bs.[i] >= bs.[i + 1] then gs.[i] <- 1L
    let fcum = Array.zeroCreate (n + 1)
    let gcum = Array.zeroCreate (n + 1)
    for i in 0 .. n - 1 do
        fcum.[i + 1] <- fcum.[i] + fs.[i]
        gcum.[i + 1] <- gcum.[i] + gs.[i]
    let q = read int
    for i in 0 .. q - 1 do
        let [| l; r |] = reada int
        let diff = r - l |> int64

        let okf =
            if fcum.[r] - fcum.[l] = diff then 1 else 0

        let okg =
            if gcum.[r] - gcum.[l] = diff then 1 else 0

        sprintf "%d %d" okf okg |> puts
    ()

// -----------------------------------------------------------------------------------------------------
main()
writer.Dispose()
0