結果

問題 No.1288 yuki collection
ユーザー chocoruskchocorusk
提出日時 2020-08-22 12:51:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,350 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 125,168 KB
最終ジャッジ日時 2023-09-10 13:38:09
合計ジャッジ時間 10,712 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
75,528 KB
testcase_01 AC 77 ms
71,228 KB
testcase_02 AC 94 ms
76,000 KB
testcase_03 AC 166 ms
78,180 KB
testcase_04 AC 78 ms
71,400 KB
testcase_05 AC 86 ms
75,240 KB
testcase_06 AC 154 ms
78,148 KB
testcase_07 AC 90 ms
76,356 KB
testcase_08 AC 174 ms
78,352 KB
testcase_09 AC 159 ms
78,128 KB
testcase_10 AC 180 ms
77,864 KB
testcase_11 AC 163 ms
78,124 KB
testcase_12 AC 167 ms
77,936 KB
testcase_13 TLE -
testcase_14 AC 4,810 ms
110,948 KB
testcase_15 AC 4,088 ms
106,380 KB
testcase_16 AC 4,085 ms
106,020 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 4,932 ms
113,428 KB
testcase_20 TLE -
testcase_21 AC 4,505 ms
125,168 KB
testcase_22 AC 4,611 ms
122,456 KB
testcase_23 AC 4,940 ms
122,876 KB
testcase_24 AC 4,827 ms
113,496 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
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 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
class MinCostFlow:
    def __init__(self, n):
        self.n=n
        self.g=[[] for _ in range(n)]
        self.h=[0]*n
    def add_edge(self, frm, to, cap, cost):
        g=self.g
        g[frm].append((to, cap, cost, len(g[to])))
        g[to].append((frm, 0, -cost, len(g[frm])-1))
    def mincostflow(self, s, t, f):
        res=0
        n=self.n
        g=self.g
        h=self.h
        INF=10**18
        h=[0]*n
        prevv=[0]*n
        preve=[0]*n
        while f>0:
            que=[]
            dist=[INF]*n
            dist[s]=0
            heapq.heappush(que, (0, s))
            while len(que)>0:
                p=heapq.heappop(que)
                v=p[1]
                if dist[v]<p[0]:
                    continue
                for i, e in enumerate(g[v]):
                    to, cost=e[0], e[2]
                    if e[1]>0 and dist[to]>dist[v]+cost+h[v]-h[to]:
                        dist[to]=dist[v]+cost+h[v]-h[to]
                        prevv[to]=v
                        preve[to]=i
                        heapq.heappush(que, (dist[to], to))
            for i, d in enumerate(dist):
                h[i]+=d
            if dist[t]==INF:
                return -1
            d=f
            v=t
            while v!=s:
                d=min(d, g[prevv[v]][preve[v]][1])
                v=prevv[v]
            f-=d
            res+=d*h[t]
            v=t
            def add(e, d):
                return (e[0], e[1]+d, e[2], e[3])
            while v!=s:
                g[prevv[v]][preve[v]]=add(g[prevv[v]][preve[v]], -d)
                rev=g[prevv[v]][preve[v]][3]
                g[v][rev]=add(g[v][rev], d)
                v=prevv[v]
        return res
n=int(input())
s=input()
v=list(map(int, input().split()))
start, end, S, T=n+1, n, n+2, n+3
mcf=MinCostFlow(n+4)
mcf.add_edge(S, start, n//4, 0)
mcf.add_edge(end, T, n//4, 0)
ans=0
f=0
s0="yuki"
idx=[n+1]*5
idx[4]=n
for i in range(n-1, -1, -1):
    k=s0.find(s[i])
    if idx[k]<=n:
        mcf.add_edge(i, idx[k], n//4, 0)
    if idx[k+1]<=n:
        mcf.add_edge(S, idx[k+1], 1, 0)
        mcf.add_edge(idx[k+1], i, 1, v[i])
        mcf.add_edge(i, T, 1, 0)
        ans+=v[i]
        f+=1
    idx[k]=i
if idx[0]<=n:
    mcf.add_edge(start, idx[0], n//4, 0)
mcf.add_edge(start, end, n//4, 0)
ans-=mcf.mincostflow(S, T, n//4+f)
print(ans)
0