結果

問題 No.630 門松グラフ
ユーザー maspymaspy
提出日時 2020-01-06 12:10:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 1,500 ms
コード長 731 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,980 KB
最終ジャッジ日時 2024-05-02 10:48:31
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 33 ms
10,496 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 31 ms
10,496 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 164 ms
35,720 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 167 ms
35,980 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 149 ms
25,600 KB
testcase_25 AC 30 ms
10,496 KB
testcase_26 AC 150 ms
26,368 KB
testcase_27 AC 152 ms
25,728 KB
testcase_28 AC 160 ms
34,896 KB
testcase_29 AC 146 ms
31,764 KB
testcase_30 AC 160 ms
31,816 KB
testcase_31 AC 150 ms
29,328 KB
testcase_32 AC 92 ms
21,844 KB
testcase_33 AC 91 ms
18,944 KB
testcase_34 AC 123 ms
25,232 KB
testcase_35 AC 99 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

# 二部グラフが必要十分

N,M = map(int,read().split())

x = N//2

if M < N - 1 or M > x * (N-x):
    print('NO')
    exit()

# 奇数を左に、偶数を右に置く
E = []
for i in range(1,N):
    E.append((i,i+1))

rest = M - (N-1)
i = 1
for i in range(1,N+1,2):
    if not rest:
        break
    for j in range(2,N+1,2):
        if abs(i-j) == 1:
            continue
        E.append((i,j))
        rest -= 1
        if not rest:break

A = [0] * N
A[1::2] = range((N+3)//2,N+1)
A[::2] = range(1,(N+3)//2)

print('YES')
print(' '.join(map(str,A)))
print('\n'.join('{} {}'.format(x,y) for x,y in E))

0