結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー mkawa2mkawa2
提出日時 2021-07-30 21:35:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 1,375 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,504 KB
最終ジャッジ日時 2024-09-15 23:15:45
合計ジャッジ時間 8,061 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 803 ms
31,504 KB
testcase_17 AC 799 ms
31,328 KB
testcase_18 AC 828 ms
31,468 KB
testcase_19 AC 810 ms
31,468 KB
testcase_20 AC 369 ms
31,112 KB
testcase_21 AC 370 ms
31,152 KB
testcase_22 AC 374 ms
31,148 KB
testcase_23 AC 121 ms
15,848 KB
testcase_24 AC 612 ms
27,156 KB
testcase_25 AC 447 ms
15,852 KB
testcase_26 AC 761 ms
31,000 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

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)

if last==-1:
    print(-1)
    exit()

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