結果

問題 No.127 門松もどき
ユーザー yaoshimaxyaoshimax
提出日時 2015-04-26 08:49:23
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 76,804 KB
実行使用メモリ 215,204 KB
最終ジャッジ日時 2024-07-05 02:44:24
合計ジャッジ時間 10,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,700 KB
testcase_01 AC 72 ms
75,448 KB
testcase_02 AC 72 ms
75,552 KB
testcase_03 AC 72 ms
75,312 KB
testcase_04 AC 584 ms
214,788 KB
testcase_05 AC 71 ms
75,660 KB
testcase_06 AC 125 ms
79,988 KB
testcase_07 AC 86 ms
78,060 KB
testcase_08 AC 74 ms
76,348 KB
testcase_09 AC 73 ms
76,796 KB
testcase_10 AC 72 ms
75,548 KB
testcase_11 AC 90 ms
77,980 KB
testcase_12 AC 365 ms
146,492 KB
testcase_13 AC 472 ms
178,600 KB
testcase_14 AC 412 ms
169,600 KB
testcase_15 AC 577 ms
204,828 KB
testcase_16 AC 418 ms
166,952 KB
testcase_17 AC 442 ms
180,768 KB
testcase_18 AC 373 ms
162,984 KB
testcase_19 AC 266 ms
123,312 KB
testcase_20 AC 258 ms
123,276 KB
testcase_21 AC 178 ms
100,768 KB
testcase_22 WA -
testcase_23 AC 648 ms
215,200 KB
testcase_24 AC 474 ms
186,656 KB
testcase_25 AC 558 ms
206,376 KB
testcase_26 AC 317 ms
141,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
dpL=[[1 for j in range(N)] for k in range(N)]
dpR=[[1 for j in range(N)] for k in range(N)]
ans=1
for d in range(1,N):
    for l in range(N-d):
        # update l,l+d
        if A[l]<A[l+d]:
            dpL[l][l+d]=max(dpL[l][l+d-1],dpR[l+1][l+d]+1)
            dpR[l][l+d]=dpR[l+1][l+d]
        if A[l]>A[l+d]:
            dpL[l][l+d]=dpL[l][l+d-1]
            dpR[l][l+d]=max(dpR[l+1][l+d],dpL[l][l+d-1]+1)
        ans=max(ans,dpL[l][l+d])
        ans=max(ans,dpR[l][l+d])

print ans


0