結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー simansiman
提出日時 2022-09-25 16:17:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-06-01 22:22:07
合計ジャッジ時間 7,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 76 ms
12,288 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 WA -
testcase_09 AC 80 ms
12,288 KB
testcase_10 WA -
testcase_11 AC 78 ms
12,160 KB
testcase_12 WA -
testcase_13 AC 87 ms
12,544 KB
testcase_14 AC 86 ms
12,672 KB
testcase_15 WA -
testcase_16 AC 85 ms
12,544 KB
testcase_17 WA -
testcase_18 AC 88 ms
12,672 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 86 ms
12,544 KB
testcase_23 AC 227 ms
28,928 KB
testcase_24 AC 225 ms
28,928 KB
testcase_25 AC 227 ms
28,928 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 227 ms
28,928 KB
testcase_29 AC 226 ms
29,056 KB
testcase_30 AC 227 ms
28,928 KB
testcase_31 AC 226 ms
29,056 KB
testcase_32 AC 232 ms
29,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:34: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
L = []
R = []

min_v = Float::INFINITY
0.upto(N - 1) do |i|
  a = A[i]
  min_v = a if min_v > a
  L[i] = min_v
end

min_v = Float::INFINITY
(N - 1).downto(0) do |i|
  a = A[i]
  min_v = a if min_v > a
  R[i] = min_v
end

ans = Float::INFINITY

1.upto(N - 2) do |i|
  a = A[i]
  l = L[i - 1]
  r = R[i + 1]
  next if l > a
  next if r > a

  v = a + l + r
  ans = v if ans > v
end

if ans == Float::INFINITY
  puts -1
else
  puts ans
end
0