結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー H20H20
提出日時 2021-07-31 00:15:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,799 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 96,576 KB
最終ジャッジ日時 2024-09-16 04:23:55
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,524 KB
testcase_01 AC 41 ms
54,724 KB
testcase_02 AC 41 ms
54,472 KB
testcase_03 AC 41 ms
53,980 KB
testcase_04 AC 40 ms
54,188 KB
testcase_05 AC 42 ms
55,288 KB
testcase_06 AC 41 ms
54,260 KB
testcase_07 AC 42 ms
53,740 KB
testcase_08 AC 41 ms
54,528 KB
testcase_09 AC 41 ms
54,000 KB
testcase_10 AC 41 ms
55,036 KB
testcase_11 AC 42 ms
55,364 KB
testcase_12 AC 41 ms
55,476 KB
testcase_13 AC 43 ms
54,904 KB
testcase_14 AC 42 ms
53,940 KB
testcase_15 AC 42 ms
54,384 KB
testcase_16 AC 131 ms
92,352 KB
testcase_17 AC 137 ms
96,576 KB
testcase_18 AC 100 ms
90,576 KB
testcase_19 AC 103 ms
90,432 KB
testcase_20 AC 119 ms
90,340 KB
testcase_21 AC 120 ms
90,332 KB
testcase_22 AC 122 ms
90,196 KB
testcase_23 AC 45 ms
57,908 KB
testcase_24 AC 133 ms
93,568 KB
testcase_25 AC 74 ms
79,864 KB
testcase_26 AC 85 ms
82,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K = input().split()
N = int(N)
if len(K)>N:
    print(-1)
    exit()
K = str(K).zfill(N)
A = [0] + list(map(int, input().split())) 

ANS = collections.deque()
for i in range(N):
    v = int(K[i])
    if A[v]>0:
        ANS.append(v)
        A[v]-=1
    else:
        #より大きい値がある
        for j in range(int(K[i])+1,10):
            if A[j]>0:
                ANS.append(j)                
                A[j]-=1
                for k in range(len(ANS),N):
                    for j in range(10):
                        if A[j]>0:
                            ANS.append(j)
                            A[j]-=1
                            break
                print(''.join(map(str, ANS)))
                exit()
        #ないから遡る
        while len(ANS)>0:
            v = ANS.pop()
            A[v]+=1
            for j in range(v+1,10):
                if A[j]>0:                 
                    ANS.append(j)
                    A[j]-=1
                    for k in range(len(ANS),N):
                        for j in range(10):
                            if A[j]>0:
                                ANS.append(j)
                                A[j]-=1
                                break
                    print(''.join(map(str, ANS)))
                    exit()
        print(-1)
        exit()
while len(ANS)>0:
    v = ANS.pop()
    A[v]+=1
    for j in range(v+1,10):
        if A[j]>0:                 
            ANS.append(j)
            A[j]-=1
            for k in range(len(ANS),N):
                for j in range(10):
                    if A[j]>0:
                        ANS.append(j)
                        A[j]-=1
                        break
            print(''.join(map(str, ANS)))
            exit()
print(-1)
exit()
0