結果

問題 No.630 門松グラフ
ユーザー titiatitia
提出日時 2024-06-12 02:48:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 34,308 KB
最終ジャッジ日時 2024-06-12 02:48:59
合計ジャッジ時間 7,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 56 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 36 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 45 ms
10,624 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 WA -
testcase_21 AC 32 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 246 ms
21,888 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 240 ms
21,120 KB
testcase_27 AC 259 ms
21,760 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 320 ms
27,880 KB
testcase_31 AC 281 ms
25,764 KB
testcase_32 AC 186 ms
20,968 KB
testcase_33 AC 137 ms
16,768 KB
testcase_34 AC 247 ms
22,756 KB
testcase_35 AC 162 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

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

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