結果

問題 No.1017 Reiwa Sequence
ユーザー NoneNone
提出日時 2021-04-29 02:15:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 226,816 KB
最終ジャッジ日時 2024-07-08 01:22:16
合計ジャッジ時間 45,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 45 ms
59,264 KB
testcase_10 AC 109 ms
67,712 KB
testcase_11 AC 45 ms
58,880 KB
testcase_12 AC 625 ms
125,184 KB
testcase_13 AC 635 ms
123,392 KB
testcase_14 AC 45 ms
58,624 KB
testcase_15 AC 45 ms
59,136 KB
testcase_16 AC 47 ms
59,136 KB
testcase_17 AC 48 ms
61,952 KB
testcase_18 AC 45 ms
59,136 KB
testcase_19 AC 227 ms
157,952 KB
testcase_20 AC 226 ms
157,696 KB
testcase_21 AC 214 ms
157,696 KB
testcase_22 AC 255 ms
157,952 KB
testcase_23 AC 207 ms
157,696 KB
testcase_24 AC 222 ms
157,696 KB
testcase_25 AC 227 ms
157,696 KB
testcase_26 AC 227 ms
157,824 KB
testcase_27 AC 193 ms
128,768 KB
testcase_28 AC 211 ms
139,904 KB
testcase_29 AC 116 ms
69,504 KB
testcase_30 AC 118 ms
71,040 KB
testcase_31 AC 124 ms
79,744 KB
testcase_32 AC 170 ms
111,616 KB
testcase_33 AC 115 ms
68,096 KB
testcase_34 AC 165 ms
111,488 KB
testcase_35 AC 110 ms
66,432 KB
testcase_36 AC 105 ms
65,920 KB
testcase_37 AC 161 ms
111,232 KB
testcase_38 AC 111 ms
66,304 KB
testcase_39 AC 163 ms
111,616 KB
testcase_40 AC 840 ms
226,816 KB
testcase_41 AC 822 ms
226,688 KB
testcase_42 AC 818 ms
225,152 KB
testcase_43 AC 821 ms
225,024 KB
testcase_44 AC 684 ms
157,824 KB
testcase_45 AC 803 ms
226,816 KB
testcase_46 AC 829 ms
225,408 KB
testcase_47 AC 793 ms
225,152 KB
testcase_48 AC 707 ms
168,832 KB
testcase_49 AC 703 ms
168,448 KB
testcase_50 AC 696 ms
168,704 KB
testcase_51 AC 40 ms
51,584 KB
testcase_52 AC 217 ms
157,824 KB
testcase_53 AC 129 ms
90,880 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:
            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