結果

問題 No.334 門松ゲーム
ユーザー yozayoza
提出日時 2016-01-16 02:11:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-19 19:49:00
合計ジャッジ時間 3,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 243 ms
12,416 KB
testcase_03 AC 84 ms
12,160 KB
testcase_04 AC 87 ms
12,416 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 149 ms
12,544 KB
testcase_07 AC 167 ms
12,416 KB
testcase_08 AC 109 ms
12,288 KB
testcase_09 AC 99 ms
12,160 KB
testcase_10 AC 479 ms
12,416 KB
testcase_11 AC 104 ms
12,416 KB
testcase_12 AC 107 ms
12,160 KB
testcase_13 AC 97 ms
12,288 KB
testcase_14 AC 133 ms
12,416 KB
testcase_15 AC 170 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
k_list = gets.split.map(&:to_i)

def kadomatsu?(a, b, c)
  if (a <= b and b <= c) or (c <= b and b <= a)
    return false
  else
    return true
  end
end

k_set_list = [];
0.upto(n-3) do |i|
  (i+1).upto(n-2) do |j|
    (j+1).upto(n-1) do |k|
      if kadomatsu?(k_list[i], k_list[j], k_list[k])
        k_set_list << [i, j, k]
      end
    end
  end
end

def dfs(depth, used, k_set_list)
  if depth == 0
    k_set_list.each_with_index do |k_set, i|
      if dfs(depth + 1, [i], k_set_list)
        return k_set.join(' ')
      end
    end
    return '-1'
  else
    return k_set_list.each_with_index.send("#{depth % 2 == 1 ? 'all' : 'any'}?") do |k_set, i|
      flag = used.all? do |j|
        next false if j == i
        k_set_list[j].all? {|k| not k_set.include?(k) }
      end
      if flag
        dfs(depth + 1, used + [i], k_set_list)
      else
        depth % 2 == 1 ? true : false
      end
    end
  end
end

puts dfs(0, [], k_set_list)
0