結果

問題 No.629 グラフの中に眠る門松列
ユーザー letrangerjpletrangerjp
提出日時 2018-01-05 21:47:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-06-02 10:05:41
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 WA -
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 80 ms
12,288 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 81 ms
12,032 KB
testcase_08 AC 81 ms
12,288 KB
testcase_09 AC 81 ms
12,288 KB
testcase_10 AC 79 ms
12,288 KB
testcase_11 AC 82 ms
12,288 KB
testcase_12 AC 82 ms
12,160 KB
testcase_13 AC 81 ms
12,288 KB
testcase_14 WA -
testcase_15 AC 85 ms
12,032 KB
testcase_16 AC 82 ms
12,160 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 AC 82 ms
12,160 KB
testcase_19 AC 81 ms
12,288 KB
testcase_20 AC 79 ms
12,288 KB
testcase_21 WA -
testcase_22 AC 87 ms
12,288 KB
testcase_23 AC 86 ms
12,416 KB
testcase_24 AC 95 ms
12,544 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 183 ms
13,312 KB
testcase_28 WA -
testcase_29 AC 136 ms
12,800 KB
testcase_30 AC 102 ms
12,544 KB
testcase_31 AC 148 ms
12,800 KB
testcase_32 AC 142 ms
12,800 KB
testcase_33 WA -
testcase_34 AC 152 ms
13,184 KB
testcase_35 AC 140 ms
13,056 KB
testcase_36 AC 104 ms
12,672 KB
testcase_37 WA -
testcase_38 AC 107 ms
12,544 KB
testcase_39 AC 95 ms
12,416 KB
testcase_40 WA -
testcase_41 AC 111 ms
12,672 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]}
  next if values.size < 2
  values.min(2).all?{|min| min < n} || values.max(2).all?{|max| max > n}
} ? :YES : :NO
0