結果

問題 No.332 数列をプレゼントに
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-18 18:01:06
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,081 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 843,696 KB
最終ジャッジ日時 2024-09-16 20:18:40
合計ジャッジ時間 11,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,292 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 43 ms
59,520 KB
testcase_05 AC 240 ms
174,080 KB
testcase_06 AC 220 ms
170,112 KB
testcase_07 RE -
testcase_08 AC 331 ms
246,784 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 175 ms
144,796 KB
testcase_12 AC 168 ms
126,996 KB
testcase_13 AC 174 ms
144,000 KB
testcase_14 AC 213 ms
148,480 KB
testcase_15 AC 69 ms
76,032 KB
testcase_16 AC 47 ms
59,136 KB
testcase_17 WA -
testcase_18 MLE -
testcase_19 WA -
testcase_20 AC 82 ms
87,040 KB
testcase_21 AC 52 ms
67,456 KB
testcase_22 AC 69 ms
77,952 KB
testcase_23 RE -
testcase_24 AC 184 ms
155,008 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 164 ms
152,576 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 MLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
A = list(map(int, input().split()))

small = []
big = []
for i, a in enumerate(A):
    if a <= 10 ** 5:
        small.append(i)
    else:
        big.append(i)

M = len(small)
W = sum(A[i] for i in small)
dp = [[0] * (W + 1) for _ in range(M + 1)]
dp[0][0] = 1
for i in range(M):
    for j in range(W + 1 - A[small[i]]):
        if dp[i][j]:
            dp[i+1][j] = 1
            dp[i+1][j + A[small[i]]] = 1

K = len(big)
for S in range(1 << K):
    tot = 0
    for i in range(K):
        if (S >> i) & 1:
            tot += A[big[i]]
    Y = X - tot
    if Y > W:
        continue
    if dp[M][Y]:
        ans = ["x"] * N
        for i in range(K):
            if (S >> i) & 1:
                ans[big[i]] = "o"

        p, q = M, Y
        for _ in range(M):
            if dp[p-1][Y]:
                p -= 1
            elif dp[p-1][Y - A[small[p-1]]]:
                p -= 1
                Y -= A[small[p]]
                ans[small[p]] = "o"
            else:
                assert(0)
        print("".join(ans))
        exit()
print("No")
0