結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー sotanishysotanishy
提出日時 2021-07-30 21:39:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,006 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 189,428 KB
最終ジャッジ日時 2024-09-15 23:23:04
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 43 ms
52,352 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 42 ms
52,480 KB
testcase_13 AC 43 ms
51,968 KB
testcase_14 AC 51 ms
60,416 KB
testcase_15 AC 53 ms
60,288 KB
testcase_16 AC 379 ms
188,780 KB
testcase_17 AC 376 ms
189,176 KB
testcase_18 AC 401 ms
172,528 KB
testcase_19 AC 394 ms
174,712 KB
testcase_20 AC 375 ms
189,052 KB
testcase_21 AC 369 ms
189,048 KB
testcase_22 AC 366 ms
189,428 KB
testcase_23 WA -
testcase_24 AC 301 ms
166,912 KB
testcase_25 AC 320 ms
152,432 KB
testcase_26 AC 389 ms
177,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def check(i, d):
    s = 0
    for x in range(10)[::-1]:
        s += c[x]
        if x == d:
            s -= 1
        if cnt[i+1][x] > s:
            return False
        if cnt[i+1][x] < s:
            return True
    return False

N, K = input().rstrip().split()
N = int(N)
K = '0' * (N - len(K)) + K
c = [0] + list(map(int, input().split()))
ans = []
cnt = [[0] * 10 for _ in range(N+1)]
for i in range(N)[::-1]:
    for d in range(10):
        if int(K[i]) >= d:
            cnt[i][d] = cnt[i+1][d] + 1
        else:
            cnt[i][d] = 0
for i in range(N):
    d = int(K[i])
    ok = False
    if c[d] > 0 and check(i, d):
        ans.append(d)
        c[d] -= 1
    else:
        d += 1
        while d < 10 and c[d] == 0:
            d += 1
        if d == 10:
            print(-1)
            exit()
        ans.append(d)
        c[d] -= 1
        break
for d in range(10):
    for _ in range(c[d]):
        ans.append(d)
print(''.join(map(str, ans)))
0