結果

問題 No.630 門松グラフ
ユーザー simansiman
提出日時 2022-05-09 15:50:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 334 ms / 1,500 ms
コード長 513 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-07-16 13:59:53
合計ジャッジ時間 7,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
12,288 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 93 ms
12,288 KB
testcase_05 AC 93 ms
12,160 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 92 ms
12,416 KB
testcase_08 AC 92 ms
12,160 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 91 ms
12,160 KB
testcase_11 AC 91 ms
12,160 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 AC 92 ms
12,288 KB
testcase_15 AC 88 ms
12,160 KB
testcase_16 AC 87 ms
12,160 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 88 ms
12,416 KB
testcase_19 AC 91 ms
12,288 KB
testcase_20 AC 329 ms
28,416 KB
testcase_21 AC 92 ms
12,160 KB
testcase_22 AC 334 ms
28,544 KB
testcase_23 AC 91 ms
12,288 KB
testcase_24 AC 201 ms
13,184 KB
testcase_25 AC 108 ms
12,928 KB
testcase_26 AC 197 ms
13,184 KB
testcase_27 AC 201 ms
13,056 KB
testcase_28 AC 317 ms
28,032 KB
testcase_29 AC 288 ms
23,808 KB
testcase_30 AC 268 ms
21,376 KB
testcase_31 AC 234 ms
19,456 KB
testcase_32 AC 191 ms
17,920 KB
testcase_33 AC 148 ms
13,056 KB
testcase_34 AC 202 ms
16,768 KB
testcase_35 AC 157 ms
14,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = [] }

if M < N - 1
  puts "NO"
  exit
end

m = M
cur = 0

(N - 1).times do |u|
  E[u] << u + 1
  m -= 1
end

while m > 0 && cur < N
  es = E[cur].size

  v = cur + 2 * es + 1

  if v < N
    E[cur] << v
    m -= 1
  else
    cur += 1
  end
end

if m > 0
  puts "NO"
else
  V = [*1..N]
  puts "YES"
  puts [*1..N].map { |v| v.even? ? V.shift : V.pop }.join(' ')

  E.each do |u, nums|
    nums.each do |v|
      puts "#{u + 1} #{v + 1}"
    end
  end
end
0