結果

問題 No.1512 作文
ユーザー hirakuhiraku
提出日時 2021-05-22 07:06:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-04-18 17:28:18
合計ジャッジ時間 8,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 730 ms
27,520 KB
testcase_05 AC 708 ms
27,392 KB
testcase_06 AC 736 ms
27,264 KB
testcase_07 AC 729 ms
27,520 KB
testcase_08 AC 719 ms
27,392 KB
testcase_09 AC 46 ms
12,800 KB
testcase_10 AC 49 ms
12,672 KB
testcase_11 AC 47 ms
12,672 KB
testcase_12 AC 51 ms
12,928 KB
testcase_13 AC 48 ms
13,056 KB
testcase_14 AC 135 ms
14,336 KB
testcase_15 AC 130 ms
14,336 KB
testcase_16 AC 128 ms
14,336 KB
testcase_17 AC 131 ms
14,336 KB
testcase_18 AC 130 ms
14,336 KB
testcase_19 AC 132 ms
14,336 KB
testcase_20 AC 130 ms
14,208 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 28 ms
10,880 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 27 ms
10,880 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 26 ms
10,880 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 24 ms
10,880 KB
testcase_30 AC 25 ms
10,880 KB
testcase_31 AC 25 ms
10,624 KB
testcase_32 AC 26 ms
10,752 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 30 ms
10,880 KB
testcase_35 AC 62 ms
14,208 KB
testcase_36 AC 62 ms
14,208 KB
testcase_37 AC 46 ms
12,672 KB
testcase_38 AC 60 ms
12,544 KB
testcase_39 AC 67 ms
12,544 KB
testcase_40 AC 1,062 ms
32,640 KB
testcase_41 AC 833 ms
32,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1512
# No.1512 作文

def alp2num(x): return ord(x) - ord("a")  # a, b, c, ... => 0, 1, 2, ...


n = int(input())
S = [list(map(alp2num, list(input()))) for _ in range(n)]
S = [s for s in S if all(i <= j for i, j in zip(s, s[1:]))]
if len(S) == 0:
    print(0)
    exit()
S.sort()

# pos[i][j]:= iで始まりjで終わる文字列の最大の文字数。
pos = [[0] * 26 for _ in range(26)]
for s in S:
    if s[0] == s[-1]:
        pos[s[0]][s[-1]] += len(s)
    else:
        pos[s[0]][s[-1]] = max(pos[s[0]][s[-1]], len(s))

# # pos[x][x]をpos[x][y]達に加算する
# for i in range(26):
#     for j in range(26):
#         if i < j:
#             pos[i][j] += pos[i][i]

# dp[i]:=末尾がi以下の最大の文字数
dp = [0] * 26
dp[0] = pos[0][0]

for i in range(1, 26):
    for j in range(i + 1):
        dp[i] = max(dp[i], dp[j] + pos[j][i])

print(dp[-1])
0