結果

問題 No.1512 作文
ユーザー raven7959raven7959
提出日時 2021-08-28 10:53:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-11-21 20:52:01
合計ジャッジ時間 5,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 247 ms
87,296 KB
testcase_05 AC 252 ms
87,808 KB
testcase_06 AC 251 ms
87,936 KB
testcase_07 AC 253 ms
87,808 KB
testcase_08 AC 249 ms
87,424 KB
testcase_09 AC 46 ms
54,912 KB
testcase_10 AC 45 ms
55,040 KB
testcase_11 AC 45 ms
55,040 KB
testcase_12 AC 45 ms
54,784 KB
testcase_13 AC 46 ms
55,040 KB
testcase_14 AC 107 ms
76,800 KB
testcase_15 AC 132 ms
77,312 KB
testcase_16 AC 110 ms
76,800 KB
testcase_17 AC 106 ms
76,544 KB
testcase_18 AC 111 ms
76,800 KB
testcase_19 AC 106 ms
76,672 KB
testcase_20 AC 106 ms
76,672 KB
testcase_21 AC 46 ms
54,272 KB
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 45 ms
54,656 KB
testcase_24 AC 47 ms
54,656 KB
testcase_25 AC 47 ms
54,016 KB
testcase_26 AC 43 ms
53,760 KB
testcase_27 AC 43 ms
53,632 KB
testcase_28 AC 43 ms
53,632 KB
testcase_29 AC 43 ms
53,504 KB
testcase_30 AC 43 ms
53,632 KB
testcase_31 AC 47 ms
59,392 KB
testcase_32 AC 48 ms
60,032 KB
testcase_33 AC 47 ms
59,776 KB
testcase_34 AC 51 ms
61,568 KB
testcase_35 AC 58 ms
73,344 KB
testcase_36 AC 59 ms
73,600 KB
testcase_37 AC 54 ms
67,840 KB
testcase_38 AC 65 ms
75,008 KB
testcase_39 AC 67 ms
75,008 KB
testcase_40 AC 223 ms
99,200 KB
testcase_41 AC 209 ms
98,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
G=[[] for _ in range(26)]
num=[0]*26 #入次数を記録
for i in range(25):
  G[i].append([i+1,0])
  num[i+1]+=1
for i in range(N):
  S=input()
  n=len(S)
  flg=True
  for j in range(n-1):
    if S[j+1]<S[j]:
      flg=False
      break
  if flg:
    G[ord(S[0])-97].append([ord(S[-1])-97,n])
    if S[0]!=S[-1]:
      num[ord(S[-1])-97]+=1
for i in range(26): #あとで取り出すときに自己ループを先に取り出せるように
  G[i]=sorted(G[i])
D=deque()
DP=[0]*26
for i in range(26):
  if not num[i]:
    D.append(i)
while D:
  v=D.popleft()
  for nv,cost in G[v]:
    if nv==v:
      DP[v]+=cost
    else:
      DP[nv]=max(DP[nv],DP[v]+cost)
      num[nv]-=1
      if num[nv]==0:
        D.append(nv)
print(max(DP))
0