結果

問題 No.630 門松グラフ
ユーザー Akijin_007Akijin_007
提出日時 2023-10-06 14:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 1,500 ms
コード長 661 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-07-26 15:28:32
合計ジャッジ時間 4,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 34 ms
52,408 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 33 ms
51,840 KB
testcase_11 AC 34 ms
52,608 KB
testcase_12 AC 32 ms
51,712 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 34 ms
52,608 KB
testcase_15 AC 34 ms
52,480 KB
testcase_16 AC 32 ms
52,352 KB
testcase_17 AC 34 ms
52,736 KB
testcase_18 AC 35 ms
51,968 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 112 ms
95,744 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 114 ms
95,744 KB
testcase_23 AC 34 ms
51,968 KB
testcase_24 AC 114 ms
93,184 KB
testcase_25 AC 34 ms
52,096 KB
testcase_26 AC 110 ms
92,800 KB
testcase_27 AC 118 ms
92,928 KB
testcase_28 AC 115 ms
95,660 KB
testcase_29 AC 114 ms
93,292 KB
testcase_30 AC 113 ms
94,660 KB
testcase_31 AC 108 ms
92,416 KB
testcase_32 AC 87 ms
85,632 KB
testcase_33 AC 96 ms
84,352 KB
testcase_34 AC 112 ms
90,368 KB
testcase_35 AC 92 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

a, b = divmod(N, 2)
if M < N-1 or M > a*(a+b):
    print("NO")
    exit()
else:
    print("YES")

a = [0] * N
for i in range(N):
    u, v = divmod(i, 2)
    if v:
        a[i] = (N//2 + N%2) + u + 1
    else:
        a[i] = u+1
print(" ".join([str(_) for _ in a]))

s = set()
for i in range(N-1):
    s.add((i, i+1))

M -= N-1
c = 0
while M:
    c += 1
    u, v = divmod(c, N)
    if u >= v:
        continue
    if (u+v) % 2 == 0:
        continue
    if (u, v) not in s:
        M -= 1
        s.add((u, v))

for x in s:
    print(x[0]+1, x[1]+1)



0