結果

問題 No.127 門松もどき
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-13 10:04:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 708 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-06 08:36:48
合計ジャッジ時間 8,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 702 ms
11,136 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 73 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 374 ms
11,008 KB
testcase_13 AC 504 ms
11,136 KB
testcase_14 AC 462 ms
11,136 KB
testcase_15 AC 630 ms
11,264 KB
testcase_16 AC 454 ms
11,008 KB
testcase_17 AC 525 ms
11,264 KB
testcase_18 AC 440 ms
11,008 KB
testcase_19 AC 283 ms
11,136 KB
testcase_20 AC 288 ms
11,008 KB
testcase_21 AC 140 ms
10,880 KB
testcase_22 AC 694 ms
11,136 KB
testcase_23 AC 708 ms
11,136 KB
testcase_24 AC 536 ms
11,136 KB
testcase_25 AC 616 ms
11,136 KB
testcase_26 AC 308 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    As = list(map(int, input().split()))
    return N, As


def solve(N, As):
    dpL = [1] * N
    maxR = 1
    for i, ai in enumerate(As[1:], 1):
        maxR = update_dp(dpL, maxR, i, ai, As)
    return max(max(dpL), maxR)


def update_dp(dpL, maxR, i, ai, As):
    dptmp = [1] * i
    maxtmp = 1
    for j in range(i-1, -1, -1):
        aj = As[j]
        if aj > ai and dpL[j] >= maxtmp:
            maxtmp = dpL[j] + 1
        dptmp[j] = maxtmp
    if maxR < maxtmp:
        maxR = maxtmp
    for j, aj in enumerate(As[:i]):
        if aj < ai and dptmp[j] >= dpL[j]:
            dpL[j] = dptmp[j] + 1
    return maxR

N, As = read_data()
print(solve(N, As))
0