結果

問題 No.2029 Swap Min Max Min
ユーザー simansiman
提出日時 2022-08-09 16:58:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-09-19 21:47:30
合計ジャッジ時間 9,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 178 ms
24,832 KB
testcase_04 AC 117 ms
15,360 KB
testcase_05 AC 112 ms
16,640 KB
testcase_06 AC 140 ms
21,504 KB
testcase_07 AC 188 ms
26,752 KB
testcase_08 AC 239 ms
31,744 KB
testcase_09 AC 121 ms
15,744 KB
testcase_10 AC 94 ms
14,464 KB
testcase_11 AC 137 ms
19,840 KB
testcase_12 AC 120 ms
18,048 KB
testcase_13 AC 246 ms
31,872 KB
testcase_14 AC 175 ms
25,728 KB
testcase_15 AC 251 ms
32,256 KB
testcase_16 AC 176 ms
25,600 KB
testcase_17 AC 243 ms
31,744 KB
testcase_18 AC 260 ms
32,640 KB
testcase_19 AC 176 ms
25,472 KB
testcase_20 AC 177 ms
25,728 KB
testcase_21 AC 171 ms
25,728 KB
testcase_22 AC 167 ms
25,600 KB
testcase_23 AC 266 ms
32,640 KB
testcase_24 AC 261 ms
32,512 KB
testcase_25 AC 173 ms
26,112 KB
testcase_26 AC 170 ms
25,984 KB
testcase_27 WA -
testcase_28 AC 76 ms
12,160 KB
testcase_29 AC 78 ms
12,032 KB
testcase_30 AC 80 ms
12,160 KB
testcase_31 AC 81 ms
12,160 KB
testcase_32 AC 79 ms
12,032 KB
testcase_33 AC 78 ms
12,288 KB
testcase_34 AC 79 ms
12,288 KB
testcase_35 AC 84 ms
12,160 KB
testcase_36 AC 81 ms
12,032 KB
testcase_37 AC 77 ms
12,160 KB
testcase_38 AC 234 ms
31,744 KB
testcase_39 AC 172 ms
25,344 KB
testcase_40 AC 154 ms
23,936 KB
testcase_41 AC 250 ms
31,872 KB
testcase_42 AC 249 ms
32,128 KB
testcase_43 AC 164 ms
25,600 KB
testcase_44 AC 261 ms
32,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

if N == 2
  puts 0
  exit
end

x = N / 2
pos = []

N.times do |i|
  a = A[i]
  pos << i if a <= x
end

if N % 2 == 0
  dp = Array.new(N) { Array.new(2, Float::INFINITY) }
  dp[0][0] = pos[0]
  dp[0][1] = (pos[0] - 1).abs
  div = N / 2

  1.upto(div - 1) do |d|
    cur = 2 * d + 1
    v = pos[d]
    dp[d][0] = [dp[d - 1][0] + (cur - 1 - v).abs, dp[d - 1][1] + (cur - 1 - v).abs].min
    dp[d][1] = dp[d - 1][1] + (cur - v).abs
  end

  y = dp[div - 1].min
  puts [x, y].join(' ')
else
  y = 0
  cur = 1

  pos.each do |v|
    y += (cur - v).abs
    cur += 2
  end

  puts [x, y].join(' ')
end
0