結果

問題 No.1017 Reiwa Sequence
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 19:28:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 146,744 KB
最終ジャッジ日時 2024-06-25 21:52:34
合計ジャッジ時間 39,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 48 ms
60,032 KB
testcase_10 AC 48 ms
60,800 KB
testcase_11 AC 46 ms
60,288 KB
testcase_12 AC 49 ms
61,696 KB
testcase_13 AC 46 ms
59,904 KB
testcase_14 AC 46 ms
60,160 KB
testcase_15 AC 50 ms
60,672 KB
testcase_16 AC 47 ms
60,288 KB
testcase_17 AC 50 ms
63,488 KB
testcase_18 AC 46 ms
60,032 KB
testcase_19 AC 248 ms
133,508 KB
testcase_20 AC 251 ms
133,892 KB
testcase_21 AC 248 ms
133,768 KB
testcase_22 AC 234 ms
133,636 KB
testcase_23 AC 243 ms
133,640 KB
testcase_24 AC 244 ms
133,640 KB
testcase_25 AC 242 ms
133,696 KB
testcase_26 AC 236 ms
133,644 KB
testcase_27 AC 181 ms
113,920 KB
testcase_28 AC 199 ms
117,648 KB
testcase_29 AC 48 ms
62,592 KB
testcase_30 AC 53 ms
65,152 KB
testcase_31 AC 71 ms
75,392 KB
testcase_32 AC 153 ms
114,044 KB
testcase_33 AC 46 ms
62,080 KB
testcase_34 AC 151 ms
113,920 KB
testcase_35 AC 37 ms
52,096 KB
testcase_36 AC 42 ms
58,112 KB
testcase_37 AC 153 ms
114,048 KB
testcase_38 AC 38 ms
52,224 KB
testcase_39 AC 151 ms
114,048 KB
testcase_40 AC 286 ms
146,744 KB
testcase_41 AC 277 ms
146,572 KB
testcase_42 AC 285 ms
145,992 KB
testcase_43 AC 280 ms
145,476 KB
testcase_44 AC 81 ms
94,208 KB
testcase_45 AC 283 ms
145,604 KB
testcase_46 AC 276 ms
145,736 KB
testcase_47 AC 269 ms
145,740 KB
testcase_48 AC 106 ms
106,880 KB
testcase_49 AC 101 ms
106,368 KB
testcase_50 AC 100 ms
107,136 KB
testcase_51 AC 38 ms
51,968 KB
testcase_52 AC 236 ms
133,380 KB
testcase_53 AC 91 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
"""
1<=n<=150000
1<=ai<=150000
n<=sum(a)<=1.5^2*10^10
とりうる部分和は2^n-1
2^n-1<sum(a)なら鳩の巣原理より
ある数値kがあり部分和がkとなるaの部分列の取り方が複数ある。
nが十分大ならYes
->22以上ならOKなのでaを小さく取って全探索
"""
if n==1:
  print('No')
elif n==2:
  if a[0]==a[1]:
    print('Yes')
    print(a[0],-a[1])
  else:
    print('No')
else:
  b=[a[0],a[1]]
  sumb=a[0]+a[1]
  for x in a[2:]:
    if sumb<pow(2,len(b))-1:break
    b.append(x)
    sumb+=x
  d={}
  m=len(b)
  for i in range(1<<m):
    key=0
    for j in range(m):
      if (i>>j)&1:
        key+=a[j]
    if key in d:
      sub0=d[key]
      sub1=i
      u=sub0&sub1
      sub0-=u
      sub1-=u
      ans=[]
      for j in range(m):
        if (sub0>>j)&1:
          ans.append(a[j])
        elif (sub1>>j)&1:
          ans.append(-a[j])
        else:
          ans.append(0)
      ans+=[0]*(n-m)
      print('Yes')
      print(*ans)
      exit()
    d[key]=i
  print('No')



0