結果

問題 No.332 数列をプレゼントに
ユーザー maspymaspy
提出日時 2020-04-15 01:18:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,281 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 78,032 KB
最終ジャッジ日時 2024-04-09 18:29:03
合計ジャッジ時間 28,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
43,680 KB
testcase_01 AC 540 ms
43,660 KB
testcase_02 AC 527 ms
43,548 KB
testcase_03 AC 533 ms
43,656 KB
testcase_04 AC 535 ms
43,556 KB
testcase_05 AC 536 ms
44,048 KB
testcase_06 AC 537 ms
43,932 KB
testcase_07 AC 541 ms
43,784 KB
testcase_08 AC 543 ms
44,304 KB
testcase_09 AC 541 ms
43,808 KB
testcase_10 AC 537 ms
43,784 KB
testcase_11 AC 541 ms
43,932 KB
testcase_12 AC 544 ms
44,040 KB
testcase_13 AC 537 ms
43,680 KB
testcase_14 AC 533 ms
44,176 KB
testcase_15 AC 537 ms
43,680 KB
testcase_16 AC 535 ms
43,656 KB
testcase_17 AC 539 ms
43,912 KB
testcase_18 AC 570 ms
64,656 KB
testcase_19 AC 551 ms
46,544 KB
testcase_20 AC 548 ms
43,652 KB
testcase_21 AC 548 ms
43,804 KB
testcase_22 AC 548 ms
43,684 KB
testcase_23 AC 543 ms
43,936 KB
testcase_24 AC 541 ms
43,788 KB
testcase_25 AC 542 ms
43,784 KB
testcase_26 AC 543 ms
43,680 KB
testcase_27 AC 550 ms
44,064 KB
testcase_28 AC 543 ms
43,660 KB
testcase_29 AC 546 ms
43,808 KB
testcase_30 AC 547 ms
43,680 KB
testcase_31 AC 546 ms
43,784 KB
testcase_32 AC 546 ms
43,788 KB
testcase_33 AC 544 ms
43,652 KB
testcase_34 AC 546 ms
46,796 KB
testcase_35 AC 583 ms
78,032 KB
testcase_36 AC 543 ms
43,660 KB
testcase_37 AC 539 ms
43,684 KB
testcase_38 AC 536 ms
43,784 KB
testcase_39 AC 536 ms
43,784 KB
testcase_40 AC 533 ms
43,668 KB
testcase_41 AC 535 ms
43,676 KB
testcase_42 AC 535 ms
43,912 KB
testcase_43 AC 537 ms
43,984 KB
testcase_44 AC 540 ms
43,912 KB
testcase_45 AC 550 ms
50,068 KB
testcase_46 AC 537 ms
44,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N, X = map(int, readline().split())
A = list(map(int, read().split()))
K = 10 ** 5

low = []
high = []
for x in A:
    if x <= K:
        low.append(x)
    else:
        high.append(x)

low.sort()
L = len(low)
H = len(high)

dpl = [None] * (L + 1)
dpl[0] = np.zeros(1, np.int64)
for i, x in enumerate(low, 1):
    dp = np.full(len(dpl[i - 1]) + x, -1, np.int32)
    dp[:-x] = dpl[i - 1]
    dp[x:][dpl[i - 1] >= 0] = i
    dpl[i] = dp

dph = np.zeros(1 << H, np.int64)
for i, x in enumerate(high):
    dph[1 << i: 1 << i + 1] = dph[: 1 << i] + x

nums = X - dph
nums = nums[(0 <= nums) & (nums < len(dpl[-1]))]
nums = nums[dpl[-1][nums] >= 0]

if not len(nums):
    print('No')
    exit()

low_sum = nums[0]
high_sum = X - low_sum

# 復元
low_ind = []
high_ind = []
n = len(low)
while low_sum:
    n = dpl[n][low_sum] - 1
    low_sum -= low[n]
    low_ind.append(n)

i = np.where(dph == high_sum)[0][0]
for j in range(H):
    if i & (1 << j):
        high_ind.append(j)

nums = [low[i] for i in low_ind] + [high[i] for i in high_ind]
for x in nums:
    i = A.index(x)
    A[i] = 0

answer = ''.join('x' if x else 'o' for x in A)
print(answer)
0