結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー chineristACchineristAC
提出日時 2021-07-30 20:47:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,524 KB
最終ジャッジ日時 2024-09-15 22:40:31
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,936 KB
testcase_01 AC 52 ms
55,424 KB
testcase_02 AC 48 ms
55,424 KB
testcase_03 AC 48 ms
55,552 KB
testcase_04 AC 49 ms
55,680 KB
testcase_05 AC 50 ms
55,808 KB
testcase_06 AC 49 ms
55,780 KB
testcase_07 AC 50 ms
55,424 KB
testcase_08 AC 49 ms
55,296 KB
testcase_09 AC 49 ms
55,680 KB
testcase_10 AC 50 ms
55,808 KB
testcase_11 AC 50 ms
55,808 KB
testcase_12 AC 49 ms
56,192 KB
testcase_13 AC 49 ms
55,552 KB
testcase_14 AC 49 ms
55,424 KB
testcase_15 AC 49 ms
55,808 KB
testcase_16 AC 199 ms
90,300 KB
testcase_17 AC 248 ms
95,528 KB
testcase_18 AC 91 ms
78,912 KB
testcase_19 AC 92 ms
78,908 KB
testcase_20 AC 156 ms
99,908 KB
testcase_21 AC 162 ms
104,256 KB
testcase_22 WA -
testcase_23 AC 56 ms
58,624 KB
testcase_24 AC 269 ms
97,408 KB
testcase_25 AC 252 ms
77,824 KB
testcase_26 AC 81 ms
78,276 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

    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