結果

問題 No.905 Sorted?
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 18:23:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-06-06 02:22:10
合計ジャッジ時間 7,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 87 ms
12,672 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 102 ms
12,672 KB
testcase_08 AC 370 ms
19,452 KB
testcase_09 AC 278 ms
17,624 KB
testcase_10 AC 409 ms
22,784 KB
testcase_11 AC 382 ms
20,556 KB
testcase_12 AC 396 ms
22,616 KB
testcase_13 AC 461 ms
25,856 KB
testcase_14 AC 455 ms
25,728 KB
testcase_15 AC 474 ms
22,912 KB
testcase_16 AC 393 ms
23,296 KB
testcase_17 AC 475 ms
22,784 KB
testcase_18 AC 409 ms
22,912 KB
testcase_19 AC 80 ms
12,288 KB
testcase_20 AC 81 ms
12,288 KB
testcase_21 AC 81 ms
12,160 KB
testcase_22 AC 79 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

INC = Array.new(N, &:itself)
DEC = Array.new(N, &:itself)

N.times.inject(-1) do |r,l|
  INC[l] = ( l <= r ? r : (l ... N).find{|r_| (r_ + 1 >= N || A[r_ + 1] < A[r_]) } )
end
N.times.inject(-1) do |r,l|
  DEC[l] = ( l <= r ? r : (l ... N).find{|r_| (r_ + 1 >= N || A[r_ + 1] > A[r_]) } )
end

Q = gets.to_i
ANS = Q.times.map do
  l,r = gets.split.map(&:to_i)
  "#{r <= INC[l] ? 1 : 0} #{r <= DEC[l] ? 1 : 0}"
end
puts ANS
0