結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー ayaoniayaoni
提出日時 2021-07-30 22:16:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 1,618 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 216,064 KB
最終ジャッジ日時 2024-09-16 00:41:16
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 44 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 44 ms
51,840 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 42 ms
52,608 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 49 ms
59,264 KB
testcase_15 AC 48 ms
59,264 KB
testcase_16 AC 380 ms
195,328 KB
testcase_17 AC 377 ms
193,280 KB
testcase_18 AC 336 ms
191,104 KB
testcase_19 AC 337 ms
190,208 KB
testcase_20 AC 356 ms
216,064 KB
testcase_21 AC 356 ms
213,120 KB
testcase_22 AC 101 ms
93,952 KB
testcase_23 AC 74 ms
83,968 KB
testcase_24 AC 335 ms
173,276 KB
testcase_25 AC 320 ms
160,128 KB
testcase_26 AC 316 ms
176,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,K = S().split()
N = int(N)
C = [0]+LI()
int_K = [0]+[int(s) for s in K]
digit_K = len(int_K)-1

if N < digit_K:
    print(-1)
    exit()

if N > digit_K:
    ANS = [0]*N
    idx = 0
    for i in range(1,10):
        c = C[i]
        s = str(i)
        for j in range(c):
            ANS[idx+j] = s
        idx += c
    ans = ''.join(ANS)
    print(ans)
    exit()

S_count_K = [[0]*10 for _ in range(N+1)]
for i in range(1,N+1):
    for j in range(10):
        S_count_K[i][j] += S_count_K[i-1][j]
    k = int_K[i]
    S_count_K[i][k] += 1

for i in range(N,0,-1):
    if S_count_K[i-1][0]:
        continue
    for j in range(1,10):
        if S_count_K[i-1][j] > C[j]:
            break
    else:
        x = int_K[i]
        for k in range(x+1,10):
            if C[k]-S_count_K[i-1][k]:
                C[k] -= 1
                ANS = int_K[1:i]+[k]
                for l in range(1,10):
                    c = C[l]-S_count_K[i-1][l]
                    for _ in range(c):
                        ANS.append(l)
                str_ANS = [str(a) for a in ANS]
                ans = ''.join(str_ANS)
                print(ans)
                exit()

print(-1)
0