結果
問題 | No.1780 [Cherry Anniversary] 真冬に咲く26の櫻の木 |
ユーザー | 👑 Kazun |
提出日時 | 2021-11-25 22:37:17 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 941 bytes |
コンパイル時間 | 405 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 122,440 KB |
最終ジャッジ日時 | 2024-07-16 08:21:13 |
合計ジャッジ時間 | 6,808 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,268 KB |
testcase_01 | AC | 37 ms
54,208 KB |
testcase_02 | AC | 90 ms
76,164 KB |
testcase_03 | AC | 63 ms
73,304 KB |
testcase_04 | AC | 95 ms
76,524 KB |
testcase_05 | AC | 98 ms
76,680 KB |
testcase_06 | AC | 97 ms
76,468 KB |
testcase_07 | AC | 93 ms
76,360 KB |
testcase_08 | AC | 97 ms
76,456 KB |
testcase_09 | AC | 104 ms
76,868 KB |
testcase_10 | AC | 83 ms
76,448 KB |
testcase_11 | AC | 96 ms
76,724 KB |
testcase_12 | AC | 79 ms
76,116 KB |
testcase_13 | AC | 49 ms
64,580 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
#Greedy 解法 (TLE) def member_id(alpha): return ord(alpha)-65 # ord("A")=65 C=list(map(int,input().split())) K=list(map(int,input().split())) inf=float("inf"); number=16; member=26 M=[[] for _ in range(member)] N=int(input()) for _ in range(N): S,A,B,E=input().split() A=int(A)-1; B=int(B)-1; E=int(E) for s in S: t=member_id(s) M[t].append((A,B,E)) Data=[[-inf]*number for _ in range(member)] for alpha in range(member): DP=[-inf]*number; DP[C[alpha]-1]=0 Data[alpha][C[alpha]-1]=0 for _ in range(K[alpha]): E=DP DP=[-inf]*number for a,b,e in M[alpha]: DP[a]=max(DP[a],E[b]+e) DP[b]=max(DP[b],E[a]+e) for c in range(number): Data[alpha][c]=max(Data[alpha][c],DP[c]) F=[0]*number for alpha in range(member): for c in range(number): F[c]+=Data[alpha][c] Ans=max(F) print(Ans if Ans>-inf else "Impossible")