結果

問題 No.1017 Reiwa Sequence
ユーザー titiatitia
提出日時 2020-04-03 23:19:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,717 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 122,260 KB
最終ジャッジ日時 2024-07-03 06:19:49
合計ジャッジ時間 36,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,528 KB
testcase_01 AC 40 ms
54,400 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 66 ms
64,000 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 41 ms
54,784 KB
testcase_06 AC 40 ms
54,400 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 80 ms
76,752 KB
testcase_10 AC 63 ms
76,416 KB
testcase_11 AC 66 ms
76,160 KB
testcase_12 AC 79 ms
76,624 KB
testcase_13 AC 75 ms
76,640 KB
testcase_14 AC 95 ms
76,416 KB
testcase_15 AC 180 ms
76,416 KB
testcase_16 AC 91 ms
76,416 KB
testcase_17 AC 194 ms
76,304 KB
testcase_18 AC 90 ms
76,468 KB
testcase_19 AC 191 ms
76,160 KB
testcase_20 AC 195 ms
76,416 KB
testcase_21 AC 191 ms
76,788 KB
testcase_22 AC 183 ms
76,288 KB
testcase_23 AC 190 ms
76,288 KB
testcase_24 AC 196 ms
76,420 KB
testcase_25 AC 185 ms
76,672 KB
testcase_26 AC 186 ms
76,572 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 77 ms
76,288 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 100 ms
76,360 KB
testcase_39 WA -
testcase_40 AC 225 ms
109,724 KB
testcase_41 AC 234 ms
109,804 KB
testcase_42 AC 222 ms
106,956 KB
testcase_43 AC 224 ms
107,488 KB
testcase_44 AC 242 ms
108,828 KB
testcase_45 AC 226 ms
108,920 KB
testcase_46 AC 236 ms
107,296 KB
testcase_47 AC 226 ms
106,896 KB
testcase_48 WA -
testcase_49 AC 175 ms
122,260 KB
testcase_50 WA -
testcase_51 AC 40 ms
54,512 KB
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
A=[abs(a) for a in A]

from collections import Counter
C=Counter(A)

x=0
for c in C:
    if C[c]>1:
        x=c
        break

if x!=0:
    flag=0

    ANS=[]
    for a in A:
        if a!=x or flag==2:
            ANS.append(a)
        else:
            if flag==0:
                ANS.append(x)
                flag+=1
            elif flag==1:
                ANS.append(-x)
                flag+=1
                
    print("Yes")
    print(*ANS)
    sys.exit()

import heapq
B=[(-A[i],i) for i in range(N)]
S=set(A)
ANS=[0]*N
heapq.heapify(B)
while len(B)>=2:
    x,ind1=heapq.heappop(B)
    y,ind2=heapq.heappop(B)

    x=-x
    y=-y

    ANS[ind1]=x
    ANS[ind2]=-y

    S.remove(x)
    S.remove(y)

    if C[x-y] in S:
        fin=x-y

        for i in range(N):
            if A[i]==fin:
                ANS[i]=-fin

            print("Yes")
            print(*ANS)
            sys.exit()

    S.add(x-y)


M=min(12,N)
from itertools import product
ITER=product([-1,0,1],repeat=M)
SET=set(A[M:])

for ite in ITER:
    if max(ite)==min(ite)==0:
        continue
    S=0
    for i in range(M):
        S+=A[i]*ite[i]

    if S==0:
        ANS=[]
        for i in range(M):
            ANS.append(ite[i]*A[i])
        ANS+=[0]*abs(N-M)
        print("Yes")
        print(*ANS)
        break
    
    if S in SET:
        ANS=[]
        for i in range(M):
            ANS.append(ite[i]*A[i])
        ANS+=[0]*abs(N-M)

        for i in range(N):
            if A[i]==S:
                ANS[i]=-S
                break
        print("Yes")
        print(*ANS)
        break
                     
else:
    print("No")
    

0