結果

問題 No.127 門松もどき
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-13 10:04:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 777 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-23 22:29:48
合計ジャッジ時間 10,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 735 ms
11,008 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 83 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 418 ms
10,880 KB
testcase_13 AC 554 ms
11,136 KB
testcase_14 AC 499 ms
11,008 KB
testcase_15 AC 694 ms
11,136 KB
testcase_16 AC 484 ms
10,880 KB
testcase_17 AC 572 ms
11,008 KB
testcase_18 AC 479 ms
11,008 KB
testcase_19 AC 302 ms
11,008 KB
testcase_20 AC 306 ms
11,008 KB
testcase_21 AC 153 ms
10,752 KB
testcase_22 AC 764 ms
11,136 KB
testcase_23 AC 777 ms
11,008 KB
testcase_24 AC 570 ms
11,136 KB
testcase_25 AC 677 ms
11,008 KB
testcase_26 AC 340 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