結果

問題 No.408 五輪ピック
ユーザー wotsushiwotsushi
提出日時 2017-02-18 11:21:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-09 13:55:12
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 76 ms
12,288 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 176 ms
16,384 KB
testcase_06 AC 133 ms
14,848 KB
testcase_07 AC 152 ms
16,256 KB
testcase_08 AC 150 ms
14,976 KB
testcase_09 AC 152 ms
14,848 KB
testcase_10 AC 131 ms
14,848 KB
testcase_11 AC 128 ms
14,720 KB
testcase_12 AC 168 ms
17,024 KB
testcase_13 AC 181 ms
16,256 KB
testcase_14 AC 102 ms
13,056 KB
testcase_15 AC 184 ms
16,640 KB
testcase_16 AC 186 ms
16,384 KB
testcase_17 AC 187 ms
16,512 KB
testcase_18 AC 198 ms
16,512 KB
testcase_19 AC 178 ms
16,384 KB
testcase_20 AC 108 ms
13,056 KB
testcase_21 AC 98 ms
13,056 KB
testcase_22 AC 127 ms
13,952 KB
testcase_23 AC 185 ms
16,384 KB
testcase_24 WA -
testcase_25 AC 191 ms
16,640 KB
testcase_26 AC 186 ms
16,384 KB
testcase_27 AC 195 ms
16,640 KB
testcase_28 AC 147 ms
14,848 KB
testcase_29 AC 151 ms
14,976 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'set'

N, M = gets.split.map(&:to_i)
A, B = (1..M).map {gets.split.map(&:to_i)}.transpose
e = A.zip(B)

d1 = Array.new(N + 1, false)
e.each {|a, b|
  d1[a] ||= (b == 1)
  d1[b] ||= (a == 1)
}
d2 = Array.new(N + 1, -1)
e.each {|a, b|
  if d1[a]
    d2[b] = if d2[b] == -1
              a
            else
              0
            end
  end
  if d1[b]
    d2[a] = if d2[a] == -1
              b
            else
              0
            end
  end
}
ans = if e.any? {|a, b| d2[a] >= 0 and d2[b] >= 0 and (d2[a] == 0 or d2[b] == 0 or (d2[a] != d2[b]))}
        "YES"
      else
        "NO"
      end
puts ans
0