結果

問題 No.2656 XOR Slimes
ユーザー ゼットゼット
提出日時 2024-03-01 22:17:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 68,900 KB
最終ジャッジ日時 2024-09-29 14:18:53
合計ジャッジ時間 11,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,324 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 32 ms
53,100 KB
testcase_03 AC 32 ms
52,740 KB
testcase_04 AC 32 ms
52,408 KB
testcase_05 AC 31 ms
53,288 KB
testcase_06 AC 31 ms
52,280 KB
testcase_07 AC 32 ms
53,244 KB
testcase_08 AC 273 ms
68,272 KB
testcase_09 AC 174 ms
67,752 KB
testcase_10 AC 180 ms
67,692 KB
testcase_11 AC 182 ms
67,028 KB
testcase_12 AC 174 ms
67,820 KB
testcase_13 AC 179 ms
67,304 KB
testcase_14 AC 176 ms
68,900 KB
testcase_15 AC 176 ms
68,068 KB
testcase_16 AC 184 ms
68,312 KB
testcase_17 AC 277 ms
67,748 KB
testcase_18 AC 180 ms
66,808 KB
testcase_19 AC 177 ms
68,056 KB
testcase_20 AC 183 ms
67,784 KB
testcase_21 AC 178 ms
67,400 KB
testcase_22 AC 182 ms
67,620 KB
testcase_23 AC 173 ms
67,972 KB
testcase_24 AC 174 ms
67,480 KB
testcase_25 AC 173 ms
68,012 KB
testcase_26 AC 271 ms
67,652 KB
testcase_27 AC 173 ms
67,748 KB
testcase_28 AC 272 ms
68,328 KB
testcase_29 AC 176 ms
67,340 KB
testcase_30 AC 177 ms
67,856 KB
testcase_31 AC 178 ms
67,596 KB
testcase_32 AC 177 ms
67,328 KB
testcase_33 AC 174 ms
67,516 KB
testcase_34 AC 176 ms
67,928 KB
testcase_35 AC 175 ms
68,664 KB
testcase_36 AC 173 ms
67,712 KB
testcase_37 AC 175 ms
68,596 KB
testcase_38 AC 174 ms
67,600 KB
testcase_39 AC 176 ms
67,988 KB
testcase_40 AC 271 ms
68,788 KB
testcase_41 AC 175 ms
68,192 KB
testcase_42 AC 177 ms
68,460 KB
testcase_43 AC 176 ms
68,628 KB
testcase_44 AC 280 ms
68,124 KB
testcase_45 AC 176 ms
67,572 KB
testcase_46 AC 190 ms
67,840 KB
testcase_47 AC 194 ms
68,864 KB
testcase_48 AC 171 ms
67,664 KB
testcase_49 AC 173 ms
68,188 KB
testcase_50 AC 272 ms
68,044 KB
testcase_51 AC 189 ms
68,712 KB
testcase_52 AC 189 ms
67,720 KB
testcase_53 AC 179 ms
67,764 KB
testcase_54 AC 186 ms
68,572 KB
testcase_55 AC 293 ms
68,088 KB
testcase_56 AC 176 ms
68,636 KB
testcase_57 AC 174 ms
67,576 KB
testcase_58 AC 177 ms
67,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))
A=list(map(int,input().split()))
result=sum(A)
z=sum(A)
v=[0]*N
for i in range(N):
  v[i]=v[i-1]^A[i]
k=[0]*N
for i in range(N):
  k[i]=k[i-1]+A[i]
dp=[0]*N
for i in range(1,N):
  score=0
  for j in range(i):
    w=k[i]
    if j>0:
      w-=k[j-1]
    u=v[i]
    if j>0:
      u^=v[j-1]
    ans=w-u-(X[i]-X[j])
    if j>0:
      ans+=dp[j-1]
    score=max(score,ans)
  dp[i]=max(dp[i-1],score)
print(result-dp[N-1])
0