結果

問題 No.127 門松もどき
ユーザー gigurururugigurururu
提出日時 2015-01-15 23:35:34
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 522 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 148,096 KB
最終ジャッジ日時 2024-06-22 11:55:57
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 TLE -
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 422 ms
17,664 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 2,960 ms
85,376 KB
testcase_13 AC 4,084 ms
114,304 KB
testcase_14 AC 3,684 ms
102,656 KB
testcase_15 TLE -
testcase_16 AC 3,550 ms
101,504 KB
testcase_17 AC 4,253 ms
130,304 KB
testcase_18 AC 3,449 ms
105,216 KB
testcase_19 AC 2,038 ms
66,688 KB
testcase_20 AC 2,117 ms
70,656 KB
testcase_21 AC 953 ms
34,432 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 4,366 ms
114,816 KB
testcase_25 TLE -
testcase_26 AC 2,460 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
A=map(int,raw_input().split())
dp=[[[None]*N for _ in range(N)] for _ in [0,1]]
for i in range(N):
    dp[0][i][i]=dp[1][i][i]=1
for d in range(1,N):
    for l in range(N-d):
        r=l+d
        if A[l]>=A[r]:
            dp[0][l][r]=dp[0][l][r-1]
        else:
            dp[0][l][r]=max(dp[0][l][r-1],dp[1][l+1][r]+1)
        if A[l]<=A[r]:
            dp[1][l][r]=dp[1][l+1][r]
        else:
            dp[1][l][r]=max(dp[1][l+1][r],dp[0][l][r-1]+1)

print max([dp[0][i][N-1] for i in range(N)]+dp[1][0])
0