結果

問題 No.1780 [Cherry Anniversary] 真冬に咲く26の櫻の木
ユーザー 👑 KazunKazun
提出日時 2021-11-22 20:12:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 1,803 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-07-16 11:01:44
合計ジャッジ時間 10,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
67,740 KB
testcase_01 AC 67 ms
73,980 KB
testcase_02 AC 91 ms
76,092 KB
testcase_03 AC 95 ms
76,276 KB
testcase_04 AC 106 ms
76,516 KB
testcase_05 AC 97 ms
76,380 KB
testcase_06 AC 96 ms
76,104 KB
testcase_07 AC 97 ms
76,104 KB
testcase_08 AC 106 ms
76,664 KB
testcase_09 AC 106 ms
76,160 KB
testcase_10 AC 97 ms
76,568 KB
testcase_11 AC 101 ms
76,912 KB
testcase_12 AC 89 ms
75,832 KB
testcase_13 AC 81 ms
76,580 KB
testcase_14 AC 205 ms
77,380 KB
testcase_15 AC 306 ms
76,924 KB
testcase_16 AC 269 ms
77,256 KB
testcase_17 AC 202 ms
76,724 KB
testcase_18 AC 256 ms
76,712 KB
testcase_19 AC 189 ms
77,104 KB
testcase_20 AC 255 ms
76,776 KB
testcase_21 AC 305 ms
76,800 KB
testcase_22 AC 319 ms
77,124 KB
testcase_23 AC 218 ms
76,728 KB
testcase_24 AC 317 ms
77,372 KB
testcase_25 AC 210 ms
77,008 KB
testcase_26 AC 197 ms
77,408 KB
testcase_27 AC 256 ms
77,172 KB
testcase_28 AC 189 ms
77,064 KB
testcase_29 AC 182 ms
77,056 KB
testcase_30 AC 302 ms
77,404 KB
testcase_31 AC 175 ms
76,796 KB
testcase_32 AC 172 ms
77,208 KB
testcase_33 AC 245 ms
77,332 KB
testcase_34 AC 44 ms
63,384 KB
testcase_35 AC 126 ms
76,588 KB
testcase_36 AC 46 ms
63,160 KB
testcase_37 AC 127 ms
76,116 KB
testcase_38 AC 165 ms
76,980 KB
testcase_39 AC 148 ms
76,100 KB
testcase_40 AC 157 ms
76,776 KB
testcase_41 AC 154 ms
76,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#想定解法

def member_id(alpha):
    return ord(alpha)-65 # ord("A")=65

def identity_matrix(size):
    return [[0 if i==j else -inf for j in range(size)] for i in range(size)]

def tolopical_matrix_add(A,B):
    C=[[0]*number for _ in range(number)]
    for i in range(number):
        a=A[i]; b=B[i]; c=C[i]
        for j in range(number):
            c[j]=max(a[j],b[j])
    return C

def tolopical_matrix_mul(A,B):
    C=identity_matrix(number)
    for i in range(number):
        ci=C[i]; ai=A[i]
        for k in range(number):
            aik=ai[k]; bk=B[k]
            for j in range(number):
                ci[j]=max(ci[j],aik+bk[j])
    return C

def tolopical_matrix_power(A,k):
    B=identity_matrix(number)
    while True:
        if k&1:
            B=tolopical_matrix_mul(B,A)

        k>>=1
        if k:
            A=tolopical_matrix_mul(A,A)
        else:
            break
    return B

#==================================================
import sys
input=sys.stdin.readline

#==================================================
# #入力部
C=list(map(int,input().split()))
K=list(map(int,input().split()))

inf=float("inf"); number=16; member=26
M=[identity_matrix(number) 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:
        M[member_id(s)][A][B]=M[member_id(s)][B][A]=max(M[member_id(s)][A][B],E)

#==================================================
#トロピカル代数上での累乗を求める.
T=[tolopical_matrix_power(M[alpha],K[alpha])[C[alpha]-1] for alpha in range(member)]

#==================================================
#最終解答

V=[0]*number
for t in T:
    for i in range(number):
        V[i]+=t[i]

ans=max(V)
print(ans if ans>-inf else "Impossible")
0