結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,944 KB
testcase_01 AC 38 ms
53,660 KB
testcase_02 AC 38 ms
53,112 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 38 ms
52,488 KB
testcase_05 AC 38 ms
53,292 KB
testcase_06 AC 38 ms
53,412 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 41 ms
52,272 KB
testcase_09 AC 37 ms
52,952 KB
testcase_10 AC 83 ms
96,012 KB
testcase_11 AC 86 ms
98,208 KB
testcase_12 AC 50 ms
68,020 KB
testcase_13 AC 63 ms
82,940 KB
testcase_14 AC 65 ms
84,640 KB
testcase_15 AC 58 ms
75,864 KB
testcase_16 AC 48 ms
63,264 KB
testcase_17 AC 67 ms
86,444 KB
testcase_18 AC 85 ms
98,492 KB
testcase_19 AC 85 ms
98,508 KB
testcase_20 AC 85 ms
98,244 KB
testcase_21 AC 83 ms
98,396 KB
testcase_22 AC 84 ms
98,516 KB
testcase_23 AC 87 ms
98,356 KB
testcase_24 AC 86 ms
98,232 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