結果

問題 No.921 ずんだアロー
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-15 19:47:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 98,480 KB
最終ジャッジ日時 2024-05-04 02:46:08
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,540 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 38 ms
53,160 KB
testcase_03 AC 40 ms
53,892 KB
testcase_04 AC 38 ms
52,824 KB
testcase_05 AC 38 ms
52,416 KB
testcase_06 AC 40 ms
53,220 KB
testcase_07 AC 38 ms
52,460 KB
testcase_08 AC 37 ms
52,412 KB
testcase_09 AC 37 ms
52,336 KB
testcase_10 AC 84 ms
96,232 KB
testcase_11 AC 89 ms
98,196 KB
testcase_12 AC 52 ms
68,212 KB
testcase_13 AC 63 ms
82,268 KB
testcase_14 AC 65 ms
84,308 KB
testcase_15 AC 57 ms
75,836 KB
testcase_16 AC 47 ms
62,868 KB
testcase_17 AC 67 ms
85,996 KB
testcase_18 AC 87 ms
98,116 KB
testcase_19 AC 86 ms
98,480 KB
testcase_20 AC 87 ms
98,064 KB
testcase_21 AC 88 ms
98,144 KB
testcase_22 AC 88 ms
98,136 KB
testcase_23 AC 92 ms
98,244 KB
testcase_24 AC 88 ms
98,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n == 1:
    print(1)
    exit()

dp = [[0, 0] for _ in range(n)]
# dp[i][0]: i個目をずんだ餅にしなかったときのi個目までの最大値
# dp[i][1]: i個目をすんだ餅にしたときのi個目までの最大値

dp[0][0] = 0
dp[0][1] = 1

for i in range(1, n):
    if A[i-1] != A[i]:
        dp[i][0] = max(dp[i-1][0], dp[i-1][1])
        dp[i][1] = max(dp[i-1][0]+1, dp[i-1][1])
    else:
        dp[i][0] = max(dp[i-1][0], dp[i-1][1])
        dp[i][1] = max(dp[i-1][0]+1, dp[i-1][1]+1)

print(max(dp[-1]))
0