結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー ThetaTheta
提出日時 2024-04-16 19:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,274 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 143,632 KB
最終ジャッジ日時 2024-10-07 21:29:03
合計ジャッジ時間 4,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,612 KB
testcase_01 AC 42 ms
54,676 KB
testcase_02 AC 42 ms
54,744 KB
testcase_03 AC 41 ms
53,560 KB
testcase_04 AC 43 ms
53,620 KB
testcase_05 AC 42 ms
54,088 KB
testcase_06 AC 42 ms
54,068 KB
testcase_07 AC 41 ms
54,392 KB
testcase_08 AC 42 ms
55,352 KB
testcase_09 AC 41 ms
54,060 KB
testcase_10 AC 42 ms
55,476 KB
testcase_11 AC 43 ms
54,976 KB
testcase_12 AC 43 ms
55,232 KB
testcase_13 AC 43 ms
54,660 KB
testcase_14 AC 42 ms
55,196 KB
testcase_15 AC 42 ms
54,356 KB
testcase_16 AC 265 ms
128,756 KB
testcase_17 AC 304 ms
137,976 KB
testcase_18 AC 150 ms
129,112 KB
testcase_19 AC 159 ms
129,108 KB
testcase_20 AC 287 ms
143,632 KB
testcase_21 AC 281 ms
140,104 KB
testcase_22 AC 118 ms
127,820 KB
testcase_23 AC 83 ms
101,664 KB
testcase_24 AC 296 ms
121,768 KB
testcase_25 AC 316 ms
128,864 KB
testcase_26 AC 145 ms
128,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
sys.setrecursionlimit(600000)


def main():
    N, K = input().split()
    N = int(N)
    K = list(map(int, K))
    c = list(map(int, input().split()))
    if len(K) < N:
        ans = []
        for n, v in enumerate(c, 1):
            for _ in range(v):
                ans.append(n)
        print("".join(map(str, ans)))
        return

    if len(K) > N:
        print(-1)
        return

    ctr = Counter(dict(enumerate(c, 1)))
    ctr.subtract(K)

    for idx, digit in reversed(list(enumerate(K))):
        ctr[digit] += 1
        if any(ctr_elm < 0 for ctr_elm in ctr.values()):
            continue
        min_over_n = -1
        for n in range(10):
            if n <= digit:
                continue
            if ctr[n] > 0:
                min_over_n = n
                break
        else:
            continue

        ans = K[:idx]
        ans.append(min_over_n)
        for n in range(10):
            if n == min_over_n:
                for _ in range(ctr[n] - 1):
                    ans.append(n)
            else:
                for _ in range(ctr[n]):
                    ans.append(n)
        print("".join(map(str, ans)))
        return
    print(-1)
    return


if __name__ == "__main__":
    main()
0