結果

問題 No.497 入れ子の箱
ユーザー rickythetarickytheta
提出日時 2017-03-24 22:58:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 808 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-05 23:02:48
合計ジャッジ時間 6,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 160 ms
12,416 KB
testcase_04 AC 166 ms
12,544 KB
testcase_05 AC 165 ms
12,288 KB
testcase_06 AC 162 ms
12,544 KB
testcase_07 AC 182 ms
12,288 KB
testcase_08 AC 185 ms
12,544 KB
testcase_09 AC 181 ms
12,416 KB
testcase_10 AC 185 ms
12,416 KB
testcase_11 AC 181 ms
12,544 KB
testcase_12 AC 217 ms
12,416 KB
testcase_13 AC 219 ms
12,544 KB
testcase_14 AC 223 ms
12,416 KB
testcase_15 AC 218 ms
12,416 KB
testcase_16 AC 219 ms
12,672 KB
testcase_17 AC 220 ms
12,544 KB
testcase_18 AC 165 ms
12,544 KB
testcase_19 AC 163 ms
12,544 KB
testcase_20 AC 162 ms
12,672 KB
testcase_21 AC 163 ms
12,544 KB
testcase_22 AC 162 ms
12,544 KB
testcase_23 AC 191 ms
12,544 KB
testcase_24 AC 190 ms
12,672 KB
testcase_25 AC 73 ms
12,416 KB
testcase_26 AC 74 ms
12,288 KB
testcase_27 AC 208 ms
12,416 KB
testcase_28 AC 200 ms
12,672 KB
testcase_29 AC 207 ms
12,544 KB
testcase_30 AC 239 ms
12,416 KB
testcase_31 AC 234 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
boxes = []
for i in 0...n
  a = gets.chomp.split.map(&:to_i)
  boxes.push a
end
boxes.sort!{|a,b| a[0]*a[1]*a[2] <=> b[0]*b[1]*b[2]}
dp = []
for i in 0...n
  dp[i] = -1
end
ans = 0
def wide(a,b)
  return true if a[0]<b[0] && a[1]<b[1] && a[2]<b[2]
  return true if a[0]<b[0] && a[2]<b[1] && a[1]<b[2]
  return true if a[1]<b[0] && a[0]<b[1] && a[2]<b[2]
  return true if a[1]<b[0] && a[2]<b[1] && a[0]<b[2]
  return true if a[2]<b[0] && a[0]<b[1] && a[1]<b[2]
  return true if a[2]<b[0] && a[1]<b[1] && a[0]<b[2]
  return false
end

for i in 0...n
  box = boxes[n-1-i]
  mx = 0
  # search wider box
  for j in n-i...n
    if wide(box, boxes[j])
      if dp[j] > mx
        mx = dp[j]
      end
    end
  end
  dp[n-1-i] = mx+1
  if dp[n-1-i] > ans
    ans = dp[n-1-i]
  end
end

puts ans
0