結果
問題 | No.1512 作文 |
ユーザー | raven7959 |
提出日時 | 2021-08-28 10:45:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 720 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 100,224 KB |
最終ジャッジ日時 | 2024-11-21 20:51:49 |
合計ジャッジ時間 | 6,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
53,248 KB |
testcase_02 | AC | 43 ms
53,504 KB |
testcase_03 | AC | 42 ms
53,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 45 ms
54,784 KB |
testcase_10 | AC | 45 ms
55,040 KB |
testcase_11 | AC | 44 ms
54,784 KB |
testcase_12 | AC | 44 ms
55,040 KB |
testcase_13 | AC | 44 ms
54,912 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 43 ms
53,504 KB |
testcase_27 | AC | 45 ms
53,376 KB |
testcase_28 | AC | 43 ms
53,504 KB |
testcase_29 | WA | - |
testcase_30 | AC | 42 ms
53,632 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | AC | 48 ms
59,776 KB |
testcase_34 | RE | - |
testcase_35 | AC | 58 ms
73,088 KB |
testcase_36 | WA | - |
testcase_37 | AC | 55 ms
67,200 KB |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
ソースコード
from collections import deque N=int(input()) G=[[] for _ in range(26)] num=[0]*26 #入次数を記録 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(N): #あとで取り出すときに自己ループを先に取り出せるように G[i]=sorted(G[i]) D=deque() DP=[0]*26 for i in range(N): 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))