結果

問題 No.1017 Reiwa Sequence
ユーザー mkawa2mkawa2
提出日時 2020-04-06 00:05:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,428 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-07-03 08:22:43
合計ジャッジ時間 18,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,256 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 84 ms
10,752 KB
testcase_10 AC 52 ms
10,752 KB
testcase_11 AC 60 ms
10,880 KB
testcase_12 AC 678 ms
10,880 KB
testcase_13 AC 592 ms
10,880 KB
testcase_14 AC 82 ms
10,752 KB
testcase_15 AC 184 ms
10,880 KB
testcase_16 AC 82 ms
10,752 KB
testcase_17 AC 1,397 ms
10,752 KB
testcase_18 AC 83 ms
10,752 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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():
    def dfs(i=0,s=0,t=0):
        if s and s==t:return True
        if i==len(aa):return False
        if dfs(i+1,s,t):return True
        xx.append(i)
        if dfs(i+1,s+aa[i],t):return True
        xx.pop()
        yy.append(i)
        if dfs(i+1,s,t+aa[i]):return True
        yy.pop()
        return False

    n=II()
    aa=LI()
    if len(aa)>22:aa=aa[:22]
    xx=[]
    yy=[]
    if dfs():
        print("Yes")
        coe=[0]*len(aa)
        for i in xx:coe[i]=1
        for i in yy:coe[i]=-1
        for i in range(len(aa)):aa[i]*=coe[i]
        if n-len(aa)>0:aa+=[0]*(n-len(aa))
        print(*aa)
    else:print("No")

main()
0