結果

問題 No.1017 Reiwa Sequence
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 23:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,537 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 403,912 KB
最終ジャッジ日時 2024-10-08 23:31:40
合計ジャッジ時間 49,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,072 KB
testcase_01 AC 36 ms
53,540 KB
testcase_02 AC 37 ms
52,568 KB
testcase_03 AC 36 ms
52,920 KB
testcase_04 AC 38 ms
53,088 KB
testcase_05 AC 38 ms
53,396 KB
testcase_06 AC 37 ms
54,444 KB
testcase_07 AC 37 ms
52,740 KB
testcase_08 AC 35 ms
53,448 KB
testcase_09 AC 61 ms
79,716 KB
testcase_10 AC 58 ms
77,420 KB
testcase_11 AC 44 ms
62,868 KB
testcase_12 AC 140 ms
156,960 KB
testcase_13 AC 83 ms
104,712 KB
testcase_14 AC 59 ms
78,556 KB
testcase_15 AC 93 ms
112,020 KB
testcase_16 AC 61 ms
81,060 KB
testcase_17 AC 275 ms
248,036 KB
testcase_18 AC 61 ms
80,232 KB
testcase_19 AC 1,537 ms
403,044 KB
testcase_20 AC 1,141 ms
377,604 KB
testcase_21 AC 1,141 ms
403,912 KB
testcase_22 AC 1,043 ms
372,556 KB
testcase_23 AC 955 ms
395,024 KB
testcase_24 AC 865 ms
336,288 KB
testcase_25 AC 842 ms
355,104 KB
testcase_26 AC 809 ms
346,180 KB
testcase_27 AC 914 ms
321,052 KB
testcase_28 AC 510 ms
256,608 KB
testcase_29 AC 79 ms
99,560 KB
testcase_30 AC 665 ms
291,068 KB
testcase_31 AC 168 ms
182,820 KB
testcase_32 AC 529 ms
263,052 KB
testcase_33 AC 410 ms
254,372 KB
testcase_34 AC 38 ms
54,352 KB
testcase_35 AC 37 ms
55,252 KB
testcase_36 AC 37 ms
53,548 KB
testcase_37 AC 608 ms
300,308 KB
testcase_38 AC 618 ms
300,384 KB
testcase_39 AC 573 ms
301,532 KB
testcase_40 AC 90 ms
95,944 KB
testcase_41 AC 116 ms
95,608 KB
testcase_42 AC 88 ms
94,212 KB
testcase_43 AC 108 ms
94,552 KB
testcase_44 AC 88 ms
96,052 KB
testcase_45 AC 91 ms
95,704 KB
testcase_46 AC 90 ms
94,268 KB
testcase_47 AC 90 ms
94,204 KB
testcase_48 AC 98 ms
105,204 KB
testcase_49 AC 120 ms
107,476 KB
testcase_50 AC 99 ms
105,796 KB
testcase_51 AC 37 ms
53,336 KB
testcase_52 AC 626 ms
281,708 KB
testcase_53 AC 626 ms
281,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


exist = [-1] * (max(A) + 1)
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 abs(now-aii) in dp[-1]:
                now -= aii
                ans[ii] = aii
            elif abs(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(abs(s - ai))
        nex.add(s + ai)
    
    dp.append(nex)

print('No')
0