結果

問題 No.1288 yuki collection
ユーザー chocoruskchocorusk
提出日時 2020-09-21 22:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,355 ms / 5,000 ms
コード長 2,943 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 87,168 KB
実行使用メモリ 86,532 KB
最終ジャッジ日時 2023-09-10 13:36:51
合計ジャッジ時間 31,694 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
71,092 KB
testcase_01 AC 77 ms
71,424 KB
testcase_02 AC 77 ms
71,432 KB
testcase_03 AC 122 ms
77,636 KB
testcase_04 AC 78 ms
71,464 KB
testcase_05 AC 77 ms
71,488 KB
testcase_06 AC 85 ms
75,816 KB
testcase_07 AC 77 ms
71,584 KB
testcase_08 AC 136 ms
78,204 KB
testcase_09 AC 125 ms
77,776 KB
testcase_10 AC 135 ms
77,900 KB
testcase_11 AC 112 ms
77,644 KB
testcase_12 AC 127 ms
77,760 KB
testcase_13 AC 1,105 ms
85,216 KB
testcase_14 AC 1,112 ms
85,552 KB
testcase_15 AC 977 ms
83,904 KB
testcase_16 AC 971 ms
84,432 KB
testcase_17 AC 1,113 ms
85,052 KB
testcase_18 AC 1,342 ms
86,332 KB
testcase_19 AC 1,171 ms
85,460 KB
testcase_20 AC 1,253 ms
82,028 KB
testcase_21 AC 1,183 ms
82,200 KB
testcase_22 AC 1,242 ms
86,532 KB
testcase_23 AC 1,355 ms
86,328 KB
testcase_24 AC 1,194 ms
85,508 KB
testcase_25 AC 1,072 ms
82,040 KB
testcase_26 AC 1,325 ms
86,440 KB
testcase_27 AC 931 ms
82,860 KB
testcase_28 AC 815 ms
83,484 KB
testcase_29 AC 741 ms
82,956 KB
testcase_30 AC 440 ms
80,952 KB
testcase_31 AC 451 ms
81,104 KB
testcase_32 AC 456 ms
80,620 KB
testcase_33 AC 1,132 ms
82,312 KB
testcase_34 AC 1,216 ms
86,184 KB
testcase_35 AC 1,146 ms
85,392 KB
testcase_36 AC 1,146 ms
83,032 KB
testcase_37 AC 1,106 ms
82,460 KB
testcase_38 AC 724 ms
80,808 KB
testcase_39 AC 733 ms
80,584 KB
testcase_40 AC 341 ms
78,600 KB
testcase_41 AC 76 ms
71,360 KB
testcase_42 AC 75 ms
71,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
class MinCostFlow:
    def __init__(self, n):
        self.n=n
        self.g=[[] for _ in range(n)]
        self.h=[0]*n
        self.neg=True
    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 bellman_ford(self, s, t, prevv, preve):
        n=self.n
        g=self.g
        h=self.h
        INF=10**18
        for x in range(n):
            h[x]=INF
        h[s]=0
        for _ in range(n-1):
            for x in range(n):
                for i, e in enumerate(g[x]):
                    if e[1]==0:
                        continue
                    to, cost=e[0], e[2]
                    if h[to]>h[x]+cost:
                        h[to]=h[x]+cost
                        prevv[to]=x
                        preve[to]=i
    def mincostflow(self, s, t, f):
        res=0
        n=self.n
        g=self.g
        h=self.h
        INF=10**18
        LOG=13
        prevv=[0]*n
        preve=[0]*n
        while f>0:
            if self.neg:
                self.neg=False
                self.bellman_ford(s, t, prevv, preve)
                if h[t]==INF:
                    return -1
            else:
                que=[]
                dist=[INF]*n
                dist[s]=0
                heapq.heappush(que, s)
                while que:
                    p=heapq.heappop(que)
                    v=(p&((1<<LOG)-1))
                    if dist[v]<(p>>LOG):
                        continue
                    for i, e in enumerate(g[v]):
                        if e[1]==0:
                            continue
                        to, cost=e[0], e[2]
                        if 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]<<LOG)^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
            while v!=s:
                g[prevv[v]][preve[v]][1]-=d
                rev=g[prevv[v]][preve[v]][3]
                g[v][rev][1]+=d
                v=prevv[v]
        return res
n=int(input())
s=input()
v=list(map(int, input().split()))
start, end=n+1, n
mcf=MinCostFlow(n+2)
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(i, idx[k+1], 1, -v[i])
    idx[k]=i
if idx[0]<=n:
    mcf.add_edge(start, idx[0], n//4, 0)
mcf.add_edge(start, end, n//4, 0)
print(-mcf.mincostflow(start, end, n//4))
0