結果

問題 No.1633 Sorting Integers (Multiple of 2^K)
ユーザー googol_S0googol_S0
提出日時 2021-07-30 21:17:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 999 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 275,328 KB
最終ジャッジ日時 2024-09-15 22:37:23
合計ジャッジ時間 21,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 51 ms
58,752 KB
testcase_02 AC 155 ms
77,348 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 48 ms
58,752 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 51 ms
60,032 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 43 ms
52,096 KB
testcase_11 AC 42 ms
52,224 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 42 ms
52,352 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 43 ms
52,608 KB
testcase_17 AC 43 ms
52,736 KB
testcase_18 AC 43 ms
52,096 KB
testcase_19 AC 50 ms
59,136 KB
testcase_20 AC 49 ms
58,880 KB
testcase_21 AC 43 ms
52,480 KB
testcase_22 AC 48 ms
58,624 KB
testcase_23 WA -
testcase_24 AC 1,156 ms
274,176 KB
testcase_25 WA -
testcase_26 AC 1,049 ms
270,336 KB
testcase_27 WA -
testcase_28 AC 1,091 ms
270,592 KB
testcase_29 AC 1,145 ms
275,328 KB
testcase_30 AC 1,104 ms
274,816 KB
testcase_31 AC 1,438 ms
273,408 KB
testcase_32 WA -
testcase_33 AC 429 ms
109,504 KB
testcase_34 AC 218 ms
79,428 KB
testcase_35 AC 306 ms
88,984 KB
testcase_36 AC 249 ms
82,824 KB
testcase_37 AC 648 ms
168,448 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 226 ms
80,212 KB
testcase_41 AC 692 ms
178,432 KB
testcase_42 AC 216 ms
80,036 KB
testcase_43 AC 431 ms
112,100 KB
testcase_44 AC 984 ms
263,424 KB
testcase_45 WA -
testcase_46 AC 244 ms
82,052 KB
testcase_47 AC 308 ms
90,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
C=list(map(int,input().split()))
A=[]
for i in range(9):
  for j in range(C[i]):
    A.append(i+1)
ANS=0
M=(N+1)>>1
L=N>>1
t=0
for u in range(5,-1,-1):
  t+=(1<<u)
  mod=1<<t
  P=[pow(10,i,mod) for i in range(N+1)]
  DP=[set() for i in range(1<<N)]
  DP[0]=set([0])
  for i in range(1<<N):
    c=bin(i).count('1')
    if c>=L:
      x=((1<<N)-1)^i
      y=[0]*10
      for j in range(9):
        y[j+1]=y[j]+C[j]
      z=0
      p=0
      for k in range(N):
        while y[p]==k:
          p+=1
        if (x>>k)&1:
          z|=(1<<y[p-1])
          y[p-1]+=1
      x=z
      if len(DP[x])>0:
        for j in DP[i]:
          if (-j*P[N-c])%mod in DP[x]:
            ANS=t
            break
        if ANS==t:
          break
    if c>=M:
      continue
    for j in range(N):
      if (i>>j)&1:
        continue
      if j>0 and A[j-1]==A[j] and (i>>(j-1))&1==0:
        continue
      for k in DP[i]:
        DP[i|(1<<j)].add((k*10+A[j])%mod)
  if ANS<t:
    t-=(1<<u)
print(ANS)
0