結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 35 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 32 ms
10,496 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 169 ms
35,932 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 166 ms
35,848 KB
testcase_23 AC 30 ms
10,496 KB
testcase_24 AC 155 ms
25,856 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 150 ms
26,368 KB
testcase_27 AC 149 ms
25,728 KB
testcase_28 AC 162 ms
34,720 KB
testcase_29 AC 146 ms
31,636 KB
testcase_30 AC 170 ms
31,852 KB
testcase_31 AC 148 ms
29,460 KB
testcase_32 AC 92 ms
21,860 KB
testcase_33 AC 92 ms
18,944 KB
testcase_34 AC 123 ms
25,492 KB
testcase_35 AC 97 ms
20,864 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