結果

問題 No.1635 Let’s Sort Integers!!
ユーザー とりゐとりゐ
提出日時 2021-07-05 02:26:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,074 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 195,200 KB
最終ジャッジ日時 2024-09-15 21:26:43
合計ジャッジ時間 18,458 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 39 ms
52,608 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 41 ms
52,352 KB
testcase_32 AC 39 ms
52,480 KB
testcase_33 AC 40 ms
52,288 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 40 ms
51,712 KB
testcase_36 AC 40 ms
52,480 KB
testcase_37 AC 41 ms
52,480 KB
testcase_38 AC 40 ms
52,352 KB
testcase_39 AC 40 ms
51,712 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 40 ms
52,096 KB
testcase_48 AC 41 ms
51,968 KB
testcase_49 AC 43 ms
52,608 KB
testcase_50 AC 42 ms
52,736 KB
testcase_51 AC 46 ms
58,624 KB
testcase_52 AC 40 ms
52,736 KB
testcase_53 AC 39 ms
52,608 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 39 ms
52,224 KB
testcase_60 AC 234 ms
195,200 KB
testcase_61 AC 263 ms
159,180 KB
testcase_62 AC 235 ms
177,592 KB
testcase_63 AC 250 ms
171,240 KB
testcase_64 AC 246 ms
148,708 KB
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 41 ms
51,968 KB
testcase_69 AC 39 ms
51,968 KB
testcase_70 AC 246 ms
194,560 KB
testcase_71 AC 241 ms
156,980 KB
testcase_72 AC 249 ms
157,264 KB
testcase_73 AC 256 ms
165,436 KB
testcase_74 AC 242 ms
158,440 KB
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 AC 39 ms
51,712 KB
testcase_79 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n,k):
  #n%2==1 and k>n*(n-1)//2
  if k>(n**2-3)//2:
    return [-1]
  ans=[0]*n
  m=(n**2-3)//2-k+n//2+2
  for i in range(n//2):
    if n//2+2+i==m:
      ans[2*i]=n//2+2
    else:
      ans[2*i]=n//2+2+i
    ans[2*i+1]=i+1
  ans[n-1]=n//2+1
  ans[0]=m
  print(m)
  return ans

def f2(n,k):
  #n%2==0 and k>n*(n-1)//2
  if k>n**2//2-1:
    return [-1]
  ans=[0]*n
  m=n**2//2-k+n//2
  for i in range(n//2):
    if n//2+1+i==m:
      ans[2*i]=n//2+1
    else:
      ans[2*i]=n//2+1+i
    ans[2*i+1]=n//2-i
  ans[0]=m
  return ans

def g(n,k):
  #k<=n*(n-1)//2
  used=[1]*(n+1)
  used[n]=0
  k-=n-1
  ans=[n]
  L=n
  for i in range(n-2):
    if i%2==0:
      a=i//2+2
    else:
      a=n-(i+1)//2
    if k>=abs(L-a):
      k-=abs(L-a)
      L=a
      used[a]=0
      ans.append(a)
  ans2=[]
  for i in range(1,n):
    if used[i]:
      ans2.append(i)
  return ans2+ans
n,k=map(int,input().split())
if k<n-1:
  print(-1)
elif n%2==1:
  if k>n*(n-1)//2:
    print(*f(n,k))
  else:
    print(*g(n,k))
else:
  if k>n*(n-1)//2:
    print(*f2(n,k))
  else:
    print(*g(n,k))
0