結果

問題 No.999 てん vs. ほむ
ユーザー FromBooskaFromBooska
提出日時 2023-02-27 20:35:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 126,392 KB
最終ジャッジ日時 2024-09-15 02:36:16
合計ジャッジ時間 3,314 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,940 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 37 ms
52,200 KB
testcase_08 AC 49 ms
64,384 KB
testcase_09 AC 108 ms
104,064 KB
testcase_10 AC 64 ms
83,712 KB
testcase_11 AC 58 ms
76,928 KB
testcase_12 AC 72 ms
93,952 KB
testcase_13 AC 122 ms
126,196 KB
testcase_14 AC 122 ms
126,392 KB
testcase_15 AC 123 ms
126,008 KB
testcase_16 AC 123 ms
125,852 KB
testcase_17 AC 99 ms
113,792 KB
testcase_18 WA -
testcase_19 AC 101 ms
113,920 KB
testcase_20 WA -
testcase_21 AC 118 ms
125,708 KB
testcase_22 AC 108 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 公式解説より
# なんと区間dpではない、区間dpで解けるが間に合わない
# 全部のゲームを見渡すと、左からkセットでは、先手が左側、後手が右側を取る
# 右から(N-k)セットでは、先手が右側、後手が左側を取る
# 累積和で高速化して、最大値を探せばいい

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

from_left = []
for i in range(N):
    calc = A[i*2]-A[i*2+1]
    from_left.append(calc)
    
from_left_cum = [0]
temp = 0
for i in range(N):
    temp += from_left[i]
    from_left_cum.append(temp)
    
from_right = []
for i in range(N):
    calc = A[(N-1-i)*2+1]-A[(N-1-i)*2]
    from_right.append(calc)
    
from_right_cum = []
temp = 0
for i in range(N):
    temp += from_right[i]
    from_right_cum.append(temp)
from_right = from_right[::-1]
from_right_cum = from_right_cum[::-1]
from_right_cum.append(0)

#print(from_left)
#print(from_left_cum)
#print(from_right)
#print(from_right_cum)

ans = -10**20
for i in range(N): #Nより少ないけどまあいいか
    ans = max(ans, from_left_cum[i]+from_right_cum[i])
print(ans)
0