結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-30 22:39:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 269,428 KB
最終ジャッジ日時 2024-09-16 01:41:06
合計ジャッジ時間 4,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,216 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 36 ms
51,456 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 WA -
testcase_15 AC 36 ms
52,480 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = input().split()
C = list(map(int,input().split()))
n = int(n)

def search(x):
    C2 = C[:]
    for i in range(x-1):
        num = int(k[i])-1
        C2[num] -= 1
        if C2[num] < 0:
            return False
    num = int(k[x-1])
    for i in range(num,9):
        if C2[i]:
            return True
    return False

l = 0
r = n

while r > l + 1:
    m = (r+l)//2
    if search(m):
        l = m
    else:
        r = m
if l == 0:
    print(-1)
    exit()

ans = ""
for i in range(l-1):
    ans += k[i]
    C[int(k[i])-1] -= 1
num = int(k[l-1])
for j in range(num,9):
    if C[j]:
        ans += str(j+1)
        C[j] -= 1
        break
for i,c in enumerate(C,1):
    ans += str(i)*c
print(ans)
0