結果

問題 No.1017 Reiwa Sequence
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 23:21:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 930 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 545,912 KB
最終ジャッジ日時 2024-10-08 23:21:28
合計ジャッジ時間 18,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,064 KB
testcase_01 AC 40 ms
53,120 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 43 ms
59,776 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 38 ms
53,376 KB
testcase_07 AC 38 ms
53,248 KB
testcase_08 AC 38 ms
53,376 KB
testcase_09 AC 77 ms
96,768 KB
testcase_10 AC 79 ms
93,312 KB
testcase_11 AC 46 ms
64,000 KB
testcase_12 AC 243 ms
247,808 KB
testcase_13 AC 128 ms
147,200 KB
testcase_14 AC 83 ms
93,692 KB
testcase_15 AC 137 ms
162,944 KB
testcase_16 AC 79 ms
97,152 KB
testcase_17 AC 480 ms
266,376 KB
testcase_18 AC 75 ms
98,280 KB
testcase_19 MLE -
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 #

N = int(input())
A = list(map(int, input().split()))

M = 150001
exist = [-1] * M
for i, ai in enumerate(A):
    if exist[ai] != -1:
        ans = [0] * N
        ans[i] = -ai
        ans[exist[ai]] = ai
        print('Yes')
        print(*ans)
        quit()
    
    exist[ai] = i


order = sorted(range(N), key=lambda i:A[i])
dp = [{0}]
for pos, i in enumerate(order):
    ai = A[i]
    if ai in dp[-1]:
        ans = [0] * N
        ans[i] = -ai
        now = ai
        for ii in order[:pos][::-1]:
            dp.pop()
            aii = A[ii]
            if now-aii in dp[-1]:
                now -= aii
                ans[ii] = aii
            elif now+aii in dp[-1]:
                now += aii
                ans[ii] = -aii
        print('Yes')
        print(*ans)
        quit()
    nex = set()
    for s in dp[-1]:
        nex.add(s)
        nex.add(s - ai)
        nex.add(s + ai)
    
    dp.append(nex)

print('No')
0