結果

問題 No.408 五輪ピック
ユーザー wotsushiwotsushi
提出日時 2017-02-18 11:54:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 229 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-06-09 13:57:56
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,416 KB
testcase_01 AC 77 ms
12,288 KB
testcase_02 AC 76 ms
12,416 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 80 ms
12,416 KB
testcase_05 AC 176 ms
16,512 KB
testcase_06 AC 150 ms
18,304 KB
testcase_07 AC 171 ms
19,200 KB
testcase_08 AC 150 ms
15,068 KB
testcase_09 AC 151 ms
15,744 KB
testcase_10 AC 140 ms
17,408 KB
testcase_11 AC 134 ms
16,896 KB
testcase_12 AC 177 ms
19,328 KB
testcase_13 AC 171 ms
16,256 KB
testcase_14 AC 103 ms
14,080 KB
testcase_15 AC 180 ms
17,664 KB
testcase_16 AC 178 ms
16,640 KB
testcase_17 AC 176 ms
16,896 KB
testcase_18 AC 181 ms
17,408 KB
testcase_19 AC 194 ms
18,176 KB
testcase_20 AC 112 ms
15,104 KB
testcase_21 AC 97 ms
14,208 KB
testcase_22 AC 138 ms
17,280 KB
testcase_23 AC 208 ms
20,736 KB
testcase_24 AC 229 ms
21,376 KB
testcase_25 AC 186 ms
18,688 KB
testcase_26 AC 200 ms
19,584 KB
testcase_27 AC 189 ms
18,048 KB
testcase_28 AC 148 ms
18,048 KB
testcase_29 AC 151 ms
17,664 KB
testcase_30 AC 78 ms
12,288 KB
testcase_31 AC 78 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'set'

N, M = gets.split.map(&:to_i)
A, B = (1..M).map {gets.split.map(&:to_i)}.transpose
e = if M == 0
      []
    else
      A.zip(B)
    end
d1 = Array.new(N + 1, false)
e.each {|a, b|
  d1[a] ||= (b == 1)
  d1[b] ||= (a == 1)
}
d2 = Array.new(N + 1) {Set.new}
e.each {|a, b|
  if d1[a]
    d2[b].add(a)
  end
  if d1[b]
    d2[a].add(b)
  end
}
ans = if e.any? {|a, b|
           a != 1 and b != 1 and (not d2[a].empty?) and (not d2[b].empty?) and
           (d2[a] | d2[b] | Set[a, b]).size >= 4}
        "YES"
      else
        "NO"
      end
puts ans
0