結果

問題 No.408 五輪ピック
ユーザー wotsushiwotsushi
提出日時 2017-02-18 11:46:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-06-09 13:56:59
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,416 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 88 ms
12,416 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 197 ms
16,512 KB
testcase_06 AC 260 ms
19,456 KB
testcase_07 AC 294 ms
20,992 KB
testcase_08 AC 167 ms
15,208 KB
testcase_09 AC 168 ms
15,872 KB
testcase_10 AC 262 ms
18,944 KB
testcase_11 AC 252 ms
17,920 KB
testcase_12 AC 316 ms
20,864 KB
testcase_13 AC 191 ms
16,256 KB
testcase_14 AC 152 ms
14,592 KB
testcase_15 AC 203 ms
17,792 KB
testcase_16 AC 197 ms
16,640 KB
testcase_17 AC 198 ms
16,896 KB
testcase_18 AC 200 ms
17,536 KB
testcase_19 AC 246 ms
20,608 KB
testcase_20 AC 185 ms
16,000 KB
testcase_21 AC 143 ms
14,592 KB
testcase_22 AC 249 ms
19,072 KB
testcase_23 AC 231 ms
20,864 KB
testcase_24 AC 268 ms
21,504 KB
testcase_25 AC 210 ms
18,560 KB
testcase_26 AC 449 ms
21,120 KB
testcase_27 WA -
testcase_28 AC 174 ms
18,304 KB
testcase_29 AC 170 ms
18,304 KB
testcase_30 AC 86 ms
12,288 KB
testcase_31 AC 87 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 (d2[a] | d2[b] | Set[a, b]).size >= 4}
        "YES"
      else
        "NO"
      end
puts ans
0