結果

問題 No.1017 Reiwa Sequence
ユーザー tamatotamato
提出日時 2020-04-03 23:22:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,840 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 771,700 KB
最終ジャッジ日時 2024-07-03 06:25:34
合計ジャッジ時間 14,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
71,808 KB
testcase_01 AC 50 ms
67,840 KB
testcase_02 AC 47 ms
66,672 KB
testcase_03 AC 56 ms
71,040 KB
testcase_04 AC 51 ms
68,780 KB
testcase_05 AC 85 ms
84,864 KB
testcase_06 AC 68 ms
76,672 KB
testcase_07 AC 51 ms
68,352 KB
testcase_08 AC 51 ms
67,968 KB
testcase_09 AC 392 ms
221,256 KB
testcase_10 AC 1,586 ms
445,312 KB
testcase_11 AC 849 ms
279,548 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
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 #

def main():
    import sys
    input = sys.stdin.readline

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

    ans = [0] * N
    seen = [[] for _ in range(300010)]
    flg = 0
    ok = 0
    for i in range(N):
        if flg:
            break
        for j in range(i+1, N):
            if seen[A[i]+A[j]]:
                k, l = seen[A[i]+A[j]]
                ans[i] = 1
                ans[j] = 1
                ans[k] = -1
                ans[l] = -1
                flg = 1
                ok = 1
                break
            else:
                seen[A[i]+A[j]] = [i, j]

    S = sum(A)
    if not ok:
        dp = [[False] * (2*S+10) for _ in range(N+1)]
        dp[0][0] = True
        for i, a in enumerate(A):
            for j in range(S+1):
                if dp[i][j]:
                    dp[i+1][j+a] = True
                    dp[i+1][j-a] = True
                    if i==0 and j==0:
                        continue
                    dp[i+1][j] = True
            for j in range(-1, -S-1, -1):
                if dp[i][j]:
                    dp[i+1][j+a] = True
                    dp[i+1][j-a] = True
                    dp[i+1][j] = True
            if dp[i+1][0]:
                idx = i
                ok = 1
                break
        if ok:
            j = 0
            for i in range(idx, -1, -1):
                if j-A[i] >= -S:
                    if dp[i][j-A[i]]:
                        j = j - A[i]
                        ans[i] = 1
                        continue
                if j+A[i] <= S:
                    if dp[i][j+A[i]]:
                        j = j + A[i]
                        ans[i] = -1

    for i in range(N):
        ans[i] *= A[i]
    if ok:
        print('Yes')
        print(*ans)
    else:
        print('No')


if __name__ == '__main__':
    main()
0