結果

問題 No.332 数列をプレゼントに
ユーザー mkawa2mkawa2
提出日時 2023-04-25 23:18:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,984 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 149,160 KB
最終ジャッジ日時 2024-11-15 07:38:46
合計ジャッジ時間 8,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 149 ms
148,424 KB
testcase_06 AC 149 ms
148,416 KB
testcase_07 AC 157 ms
148,400 KB
testcase_08 AC 152 ms
148,628 KB
testcase_09 AC 47 ms
60,928 KB
testcase_10 AC 152 ms
148,316 KB
testcase_11 AC 148 ms
148,708 KB
testcase_12 AC 151 ms
148,272 KB
testcase_13 AC 152 ms
148,796 KB
testcase_14 AC 153 ms
148,424 KB
testcase_15 AC 155 ms
148,408 KB
testcase_16 AC 149 ms
148,408 KB
testcase_17 AC 147 ms
148,776 KB
testcase_18 AC 166 ms
149,040 KB
testcase_19 AC 158 ms
148,400 KB
testcase_20 AC 154 ms
148,412 KB
testcase_21 AC 153 ms
148,268 KB
testcase_22 AC 152 ms
148,408 KB
testcase_23 AC 155 ms
149,036 KB
testcase_24 AC 161 ms
149,160 KB
testcase_25 AC 160 ms
148,660 KB
testcase_26 AC 157 ms
148,588 KB
testcase_27 AC 153 ms
148,672 KB
testcase_28 AC 160 ms
148,652 KB
testcase_29 AC 161 ms
148,652 KB
testcase_30 AC 158 ms
148,776 KB
testcase_31 AC 158 ms
148,652 KB
testcase_32 AC 161 ms
148,772 KB
testcase_33 AC 169 ms
149,036 KB
testcase_34 AC 157 ms
148,660 KB
testcase_35 AC 158 ms
148,652 KB
testcase_36 AC 40 ms
52,224 KB
testcase_37 AC 159 ms
148,672 KB
testcase_38 AC 156 ms
148,736 KB
testcase_39 AC 157 ms
148,772 KB
testcase_40 AC 158 ms
148,792 KB
testcase_41 AC 158 ms
148,416 KB
testcase_42 AC 161 ms
148,804 KB
testcase_43 AC 157 ms
148,780 KB
testcase_44 AC 151 ms
148,520 KB
testcase_45 AC 167 ms
148,780 KB
testcase_46 AC 157 ms
148,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = (1 << 63)-1
# md = 10**9+7
md = 998244353

n, x = LI()
aa = LI()

if n <= 20:
    sa = [(0, 0)]
    for i, a in enumerate(aa):
        s = 1 << i
        nsa = []
        for t, b in sa:
            nsa.append((s | t, a+b))
        sa += nsa

    for s,a in sa:
        if a==x:
            ans=""
            for i in range(n):
                if s>>i&1:
                    ans+="o"
                else:
                    ans+="x"
            print(ans)
            exit()

else:
    ia = sorted(enumerate(aa), key=lambda x: -x[1])
    sa = [(0, 0)]
    for i in range(20):
        s = 1 << i
        a=ia[i][1]
        nsa = []
        for t, b in sa:
            nsa.append((s | t, a+b))
        sa += nsa

    t=sum(a for _,a in  ia[20:])
    dp=[-1]*(t+1)
    dp[0]=0
    for i,a in ia[20:]:
        for j in range(t-a,-1,-1):
            if dp[j]==-1 or dp[j+a]!=-1:continue
            dp[j+a]=i

    ans=[0]*n
    for s,a in sa:
        if not 0<=x-a<=t:continue
        if dp[x-a]==-1:continue
        for j in range(n):
            if s>>j&1:
                i=ia[j][0]
                ans[i]=1
        x-=a
        while x:
            i=dp[x]
            ans[i]=1
            x-=aa[i]

        print("".join("o" if a else "x" for a in ans))
        exit()

print("No")
0