結果

問題 No.1017 Reiwa Sequence
ユーザー NoneNone
提出日時 2021-04-29 02:10:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,298 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 226,816 KB
最終ジャッジ日時 2024-07-08 01:18:56
合計ジャッジ時間 42,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 41 ms
58,112 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 41 ms
59,136 KB
testcase_10 AC 102 ms
67,968 KB
testcase_11 AC 41 ms
58,752 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
59,136 KB
testcase_15 AC 42 ms
59,392 KB
testcase_16 AC 43 ms
58,880 KB
testcase_17 AC 45 ms
61,568 KB
testcase_18 AC 42 ms
58,752 KB
testcase_19 AC 200 ms
157,568 KB
testcase_20 AC 199 ms
157,696 KB
testcase_21 AC 198 ms
157,952 KB
testcase_22 AC 197 ms
157,696 KB
testcase_23 AC 196 ms
157,440 KB
testcase_24 AC 193 ms
157,440 KB
testcase_25 AC 192 ms
157,568 KB
testcase_26 AC 195 ms
158,080 KB
testcase_27 AC 165 ms
128,256 KB
testcase_28 AC 177 ms
139,776 KB
testcase_29 AC 101 ms
69,248 KB
testcase_30 AC 101 ms
70,912 KB
testcase_31 AC 112 ms
79,360 KB
testcase_32 AC 144 ms
111,360 KB
testcase_33 AC 102 ms
68,224 KB
testcase_34 AC 150 ms
111,360 KB
testcase_35 AC 100 ms
66,304 KB
testcase_36 AC 102 ms
66,560 KB
testcase_37 AC 146 ms
111,872 KB
testcase_38 AC 100 ms
65,920 KB
testcase_39 AC 149 ms
111,616 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 35 ms
51,968 KB
testcase_52 AC 201 ms
157,824 KB
testcase_53 AC 125 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def zeta(A,merge):
    """
    N=20程度まで
    A = 2^N 通り のフラグの立ち方に対する値。これをゼータ変換で累積していく。
    """
    _N = (len(A)-1).bit_length()
    dp = A[:]
    for k in range(_N):
        bit=1<<k
        for i in range(1<<_N):
            if i&bit:
                dp[i]=merge(dp[i^bit],dp[i])
    return dp

def main():
    used={}
    for bit in range(1<<N):
        s=S[bit]
        if s==0:
            continue
        if s not in used:
            used[s]=bit
        else:
            res=[0]*N
            bit2=used[s]
            for i in range(N):
                cnt=0
                if bit&(1<<i):
                    cnt+=1
                if bit2&(1<<i):
                    cnt-=1
                res[i]=cnt*AA[i]
            return res
    return -1


###############################################################################
import sys
input = sys.stdin.readline

N=int(input())
AA=list(map(int, input().split()))
res=[0]*N
if len(AA)>22:
    AA=AA[:22]
    N=22
A=[0]*(1<<N)
for i in range(len(AA)):
    A[1<<i]=AA[i]
###################################
def merge(x,y):
    return x+y
S=zeta(A,merge)
###################################

res=main()
if res==-1:
    print("No")
else:
    print("Yes")
    print(*res)
0