結果

問題 No.127 門松もどき
ユーザー colognecologne
提出日時 2022-03-02 16:45:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 146,940 KB
最終ジャッジ日時 2024-07-16 08:55:31
合計ジャッジ時間 7,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,360 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 35 ms
52,960 KB
testcase_03 AC 36 ms
52,164 KB
testcase_04 AC 578 ms
136,636 KB
testcase_05 AC 39 ms
52,000 KB
testcase_06 AC 75 ms
71,320 KB
testcase_07 AC 46 ms
62,304 KB
testcase_08 AC 39 ms
58,276 KB
testcase_09 AC 36 ms
58,896 KB
testcase_10 AC 35 ms
53,116 KB
testcase_11 AC 47 ms
63,228 KB
testcase_12 AC 268 ms
113,132 KB
testcase_13 AC 408 ms
125,928 KB
testcase_14 AC 373 ms
114,168 KB
testcase_15 AC 526 ms
136,524 KB
testcase_16 AC 351 ms
113,816 KB
testcase_17 AC 350 ms
127,204 KB
testcase_18 AC 293 ms
113,796 KB
testcase_19 AC 186 ms
102,056 KB
testcase_20 AC 194 ms
102,544 KB
testcase_21 AC 122 ms
88,532 KB
testcase_22 AC 558 ms
136,680 KB
testcase_23 AC 510 ms
146,940 KB
testcase_24 AC 448 ms
130,140 KB
testcase_25 AC 574 ms
136,636 KB
testcase_26 AC 320 ms
107,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    *A, = map(int, input().split())
    DP = [[0]*N for i in range(N)]
    order = sorted(range(N), key=lambda x: A[x], reverse=True)

    for i in order:
        DP[i][i] = 1
        for j in range(i-1, -1, -1):
            DP[i][j] = DP[i][j+1]
            if A[i] < A[j]:
                DP[i][j] = max(DP[i][j], DP[j][i-1]+1)
        for j in range(i+1, N):
            DP[i][j] = DP[i][j-1]
            if A[i] < A[j]:
                DP[i][j] = max(DP[i][j], DP[j][i+1]+1)

    print(max(map(max, DP)))


if __name__ == '__main__':
    main()
0