結果

問題 No.630 門松グラフ
ユーザー titiatitia
提出日時 2024-06-12 02:50:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 324 ms / 1,500 ms
コード長 689 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,252 KB
最終ジャッジ日時 2024-06-12 02:50:12
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 324 ms
34,252 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 322 ms
34,156 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 239 ms
21,760 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 210 ms
21,120 KB
testcase_27 AC 240 ms
21,632 KB
testcase_28 AC 324 ms
33,176 KB
testcase_29 AC 298 ms
28,564 KB
testcase_30 AC 281 ms
27,784 KB
testcase_31 AC 240 ms
25,768 KB
testcase_32 AC 155 ms
20,968 KB
testcase_33 AC 129 ms
16,768 KB
testcase_34 AC 202 ms
22,880 KB
testcase_35 AC 146 ms
18,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
if M<N-1:
    print("NO")
    exit()

x=(N+1)//2
y=N-x

if M>x*y:
    print("NO")
    exit()

print("YES")

A=[0]*N
cc=0

for i in range(N):
    if i<x:
        A[i]=i+1
    else:
        A[i]=10**5-cc
        cc+=1

ANS=[]
M-=N-1
m=0
p=x

count=0
while True:
    if m==x or p==N:
        break
    ANS.append((m+1,p+1))
    if count%2==0:
        m+=1
    else:
        p+=1
    count+=1


SET=set(ANS)

for i in range(x):
    if M==0:
        break
    for j in range(x,N):

        if (i+1,j+1) in SET:
            continue

        ANS.append((i+1,j+1))
        M-=1

        if M==0:
            break

print(*A)
for x,y in ANS:
    print(x,y)
        


0