結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー chineristACchineristAC
提出日時 2021-07-30 20:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 104,512 KB
最終ジャッジ日時 2024-09-15 22:43:04
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,552 KB
testcase_01 AC 52 ms
55,424 KB
testcase_02 AC 52 ms
55,424 KB
testcase_03 AC 51 ms
55,808 KB
testcase_04 AC 51 ms
55,808 KB
testcase_05 AC 52 ms
55,680 KB
testcase_06 AC 52 ms
55,680 KB
testcase_07 AC 52 ms
55,424 KB
testcase_08 AC 52 ms
55,424 KB
testcase_09 AC 52 ms
55,808 KB
testcase_10 AC 52 ms
55,552 KB
testcase_11 AC 54 ms
55,680 KB
testcase_12 AC 54 ms
55,936 KB
testcase_13 AC 52 ms
55,936 KB
testcase_14 AC 52 ms
55,552 KB
testcase_15 AC 53 ms
55,808 KB
testcase_16 AC 205 ms
90,308 KB
testcase_17 AC 247 ms
95,516 KB
testcase_18 AC 90 ms
78,532 KB
testcase_19 AC 92 ms
78,912 KB
testcase_20 AC 158 ms
100,168 KB
testcase_21 AC 162 ms
104,512 KB
testcase_22 AC 89 ms
85,632 KB
testcase_23 AC 55 ms
58,368 KB
testcase_24 AC 269 ms
97,408 KB
testcase_25 AC 258 ms
77,568 KB
testcase_26 AC 82 ms
78,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def solve(N,K,c):
    if len(K) > N:
        return -1

    if N > len(K):
        ans = []
        for j in range(10):
            ans += [str(j)] * c[j]
        return "".join(ans)

    check_c = [0 for i in range(10)]
    for i in range(len(K)):
        check_c[int(K[i])] += 1

    for d in range(len(K)-1,-1,-1):
        check_c[int(K[d])] -= 1
        if any(c[i] < check_c[i] for i in range(10)):
            continue

        for i in range(int(K[d])+1,10):
            if c[i] > check_c[i]:
                ans = [K[:d],str(i)]
                #print(ans,check_c,c)
                c[i] -= 1
                for j in range(10):
                    c[j] -= check_c[j]
                    ans += [str(j)] * c[j]
                return "".join(ans)

    return -1

N,K = input().split()
N = int(N)
c = [0] + li()
print(solve(N,K,c))
0