結果

問題 No.1017 Reiwa Sequence
ユーザー mkawa2mkawa2
提出日時 2020-04-06 07:52:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 109,936 KB
最終ジャッジ日時 2024-07-03 08:23:36
合計ジャッジ時間 46,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,564 KB
testcase_01 AC 46 ms
36,608 KB
testcase_02 AC 43 ms
36,352 KB
testcase_03 AC 47 ms
36,608 KB
testcase_04 AC 43 ms
36,480 KB
testcase_05 AC 45 ms
36,352 KB
testcase_06 AC 43 ms
36,352 KB
testcase_07 AC 44 ms
36,352 KB
testcase_08 AC 44 ms
36,608 KB
testcase_09 AC 61 ms
36,556 KB
testcase_10 AC 83 ms
37,280 KB
testcase_11 AC 64 ms
36,864 KB
testcase_12 AC 83 ms
37,344 KB
testcase_13 AC 63 ms
36,692 KB
testcase_14 AC 62 ms
36,864 KB
testcase_15 AC 82 ms
36,736 KB
testcase_16 AC 60 ms
36,736 KB
testcase_17 AC 92 ms
37,504 KB
testcase_18 AC 62 ms
36,736 KB
testcase_19 AC 564 ms
71,680 KB
testcase_20 AC 546 ms
71,680 KB
testcase_21 AC 559 ms
71,424 KB
testcase_22 AC 531 ms
71,648 KB
testcase_23 AC 518 ms
71,680 KB
testcase_24 AC 516 ms
71,552 KB
testcase_25 AC 506 ms
71,424 KB
testcase_26 AC 458 ms
71,424 KB
testcase_27 AC 408 ms
71,424 KB
testcase_28 AC 410 ms
71,424 KB
testcase_29 AC 85 ms
37,760 KB
testcase_30 AC 92 ms
38,816 KB
testcase_31 AC 149 ms
46,464 KB
testcase_32 AC 365 ms
71,620 KB
testcase_33 AC 83 ms
37,504 KB
testcase_34 AC 303 ms
71,616 KB
testcase_35 AC 43 ms
36,352 KB
testcase_36 AC 43 ms
36,620 KB
testcase_37 AC 336 ms
71,580 KB
testcase_38 AC 43 ms
36,480 KB
testcase_39 AC 373 ms
71,680 KB
testcase_40 AC 710 ms
109,936 KB
testcase_41 AC 713 ms
109,780 KB
testcase_42 AC 710 ms
109,704 KB
testcase_43 AC 719 ms
109,764 KB
testcase_44 AC 118 ms
40,096 KB
testcase_45 AC 700 ms
109,736 KB
testcase_46 AC 669 ms
109,628 KB
testcase_47 AC 626 ms
109,712 KB
testcase_48 AC 201 ms
42,544 KB
testcase_49 AC 165 ms
42,396 KB
testcase_50 AC 165 ms
42,256 KB
testcase_51 AC 43 ms
36,352 KB
testcase_52 AC 322 ms
71,424 KB
testcase_53 AC 328 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

# N=22のとき、Aの部分集合の選び方は2**22=4194304通り
# それに対して、部分集合の和は150000*22=3300000通り(正確には0も入れて+1通り)
# 選び方のパターン>和のパターンということは、同じ和になる選び方が必ず存在するということ
# よって、Nが22以上のときは初めから22項だけで考え、あとは0にする
def main():
    n=II()
    aa=LI()
    if len(aa)>22:aa=aa[:22]
    mx=3300000
    dp=[-1]*(mx+1)
    q=deque()
    q.append((0,0))
    dp[0]=0
    while q:
        i,s=q.popleft()
        if i+1<len(aa):q.append((i+1,s))
        ndp=dp[s]|1<<i
        ns=s+aa[i]
        if dp[ns]!=-1:break
        dp[ns]=ndp
        if i+1<len(aa):q.append((i+1,ns))
    else:
        print("No")
        exit()
    coe=[0]*len(aa)
    for i in range(len(aa)):
        if dp[ns]>>i&1:coe[i]=1
    for i in range(len(aa)):
        if ndp>>i&1:coe[i]=-1
    for i in range(len(aa)):
        aa[i]*=coe[i]
    if n-len(aa)>0:aa+=[0]*(n-len(aa))
    print("Yes")
    print(*aa)

main()
0