結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
10,624 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 32 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 31 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 31 ms
10,624 KB
testcase_24 WA -
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 240 ms
21,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 326 ms
27,780 KB
testcase_31 AC 279 ms
25,640 KB
testcase_32 AC 179 ms
20,968 KB
testcase_33 AC 138 ms
16,768 KB
testcase_34 AC 228 ms
22,756 KB
testcase_35 AC 161 ms
17,920 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+1,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