結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー mkawa2mkawa2
提出日時 2021-07-30 21:34:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,686 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,168 KB
最終ジャッジ日時 2024-09-15 23:14:10
合計ジャッジ時間 12,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
26,496 KB
testcase_01 AC 180 ms
26,496 KB
testcase_02 WA -
testcase_03 AC 177 ms
26,624 KB
testcase_04 AC 176 ms
26,496 KB
testcase_05 AC 175 ms
26,752 KB
testcase_06 AC 177 ms
26,624 KB
testcase_07 AC 175 ms
26,496 KB
testcase_08 AC 176 ms
26,624 KB
testcase_09 AC 177 ms
26,496 KB
testcase_10 AC 179 ms
26,752 KB
testcase_11 AC 176 ms
26,624 KB
testcase_12 AC 176 ms
26,624 KB
testcase_13 AC 178 ms
26,496 KB
testcase_14 AC 178 ms
26,496 KB
testcase_15 AC 181 ms
26,624 KB
testcase_16 AC 954 ms
47,168 KB
testcase_17 AC 937 ms
47,124 KB
testcase_18 AC 1,006 ms
46,884 KB
testcase_19 AC 983 ms
47,148 KB
testcase_20 AC 514 ms
46,816 KB
testcase_21 AC 518 ms
46,812 KB
testcase_22 AC 517 ms
46,684 KB
testcase_23 AC 269 ms
31,640 KB
testcase_24 AC 762 ms
43,376 KB
testcase_25 WA -
testcase_26 AC 923 ms
46,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

# 準備
n_max = 200005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

n, kk = SI().split()
n = int(n)
cc = LI()
kk = list(map(int, kk))
m = len(kk)

if n < m:
    print(-1)
    exit()

if n > m:
    ans = []
    for i, c in enumerate(cc, 1):
        ans += [i]*c
    print(*ans, sep="")
    exit()

def ok(k):
    for i in range(k, 9):
        if cc[i]-dd[i]: return True
    return False

dd = [0]*9
last = -1
for i, k in enumerate(kk):
    if k == 0 or ok(k): last = i
    if cc[k-1] == dd[k-1]: break
    if k == 0: break
    dd[k-1] += 1
# print(last)

ans = []
for k in kk[:last]:
    ans.append(k)
    cc[k-1] -= 1

k = kk[last]
for i in range(k, 9):
    if cc[i]:
        ans.append(i+1)
        cc[i] -= 1
        break

for i in range(9):
    ans += [i+1]*cc[i]

print(*ans, sep="")
0