結果

問題 No.629 グラフの中に眠る門松列
ユーザー letrangerjpletrangerjp
提出日時 2018-01-05 21:51:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 652 ms / 4,000 ms
コード長 390 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-06-02 10:06:52
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 77 ms
12,288 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 78 ms
12,032 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 78 ms
12,032 KB
testcase_07 AC 79 ms
12,032 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 79 ms
12,416 KB
testcase_10 AC 78 ms
12,288 KB
testcase_11 AC 79 ms
12,288 KB
testcase_12 AC 78 ms
12,160 KB
testcase_13 AC 79 ms
12,160 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 79 ms
12,160 KB
testcase_16 AC 79 ms
12,288 KB
testcase_17 AC 80 ms
12,416 KB
testcase_18 AC 80 ms
12,032 KB
testcase_19 AC 80 ms
12,160 KB
testcase_20 AC 79 ms
12,160 KB
testcase_21 AC 222 ms
16,512 KB
testcase_22 AC 83 ms
12,288 KB
testcase_23 AC 85 ms
12,288 KB
testcase_24 AC 89 ms
12,416 KB
testcase_25 AC 139 ms
13,056 KB
testcase_26 AC 162 ms
13,440 KB
testcase_27 AC 283 ms
13,568 KB
testcase_28 AC 137 ms
15,488 KB
testcase_29 AC 129 ms
12,800 KB
testcase_30 AC 490 ms
14,464 KB
testcase_31 AC 498 ms
14,848 KB
testcase_32 AC 143 ms
12,928 KB
testcase_33 AC 652 ms
15,488 KB
testcase_34 AC 195 ms
13,696 KB
testcase_35 AC 138 ms
12,800 KB
testcase_36 AC 104 ms
12,544 KB
testcase_37 AC 456 ms
14,976 KB
testcase_38 AC 105 ms
12,672 KB
testcase_39 AC 146 ms
13,056 KB
testcase_40 AC 294 ms
14,976 KB
testcase_41 AC 108 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map &:to_i
a = gets.split.map &:to_i
edges = []
$<.map{|s|
  from, to = s.split.map(&:to_i).map &:pred
  edges << [from, to] << [to, from]
}
puts a.each_with_index.any?{|n, i|
  values = edges.select{|from, to| from == i}.map{|from, to| a[to]}
  values.uniq!
  next if values.size < 2
  values.min(2).all?{|min| min < n} || values.max(2).all?{|max| max > n}
} ? :YES : :NO
0