結果
問題 | No.1288 yuki collection |
ユーザー | 草苺奶昔 |
提出日時 | 2023-03-11 20:20:36 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 691 ms / 5,000 ms |
コード長 | 3,354 bytes |
コンパイル時間 | 13,880 ms |
コンパイル使用メモリ | 223,960 KB |
実行使用メモリ | 14,940 KB |
最終ジャッジ日時 | 2024-09-18 06:44:45 |
合計ジャッジ時間 | 22,640 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 620 ms
8,852 KB |
testcase_14 | AC | 597 ms
8,788 KB |
testcase_15 | AC | 479 ms
8,764 KB |
testcase_16 | AC | 479 ms
12,944 KB |
testcase_17 | AC | 634 ms
8,788 KB |
testcase_18 | AC | 678 ms
12,904 KB |
testcase_19 | AC | 648 ms
8,808 KB |
testcase_20 | AC | 649 ms
8,828 KB |
testcase_21 | AC | 487 ms
10,820 KB |
testcase_22 | AC | 486 ms
14,940 KB |
testcase_23 | AC | 546 ms
8,788 KB |
testcase_24 | AC | 639 ms
8,796 KB |
testcase_25 | AC | 680 ms
8,800 KB |
testcase_26 | AC | 691 ms
10,760 KB |
testcase_27 | AC | 264 ms
12,924 KB |
testcase_28 | AC | 328 ms
8,708 KB |
testcase_29 | AC | 317 ms
8,812 KB |
testcase_30 | AC | 13 ms
8,020 KB |
testcase_31 | AC | 17 ms
8,156 KB |
testcase_32 | AC | 19 ms
8,276 KB |
testcase_33 | AC | 126 ms
8,248 KB |
testcase_34 | AC | 164 ms
8,248 KB |
testcase_35 | AC | 154 ms
8,252 KB |
testcase_36 | AC | 162 ms
8,252 KB |
testcase_37 | AC | 171 ms
8,372 KB |
testcase_38 | AC | 128 ms
8,340 KB |
testcase_39 | AC | 127 ms
8,252 KB |
testcase_40 | AC | 4 ms
6,940 KB |
testcase_41 | AC | 1 ms
6,940 KB |
testcase_42 | AC | 1 ms
6,944 KB |
ソースコード
package main import ( "bufio" "fmt" "os" ) const INF int = 1e18 // 拆点 func removeYuki(s string, scores []int) int { n := len(s) A := func(i int) int { return i } B := func(i int) int { return n + 1 + i } C := func(i int) int { return 2*(n+1) + i } D := func(i int) int { return 3*(n+1) + i } E := func(i int) int { return 4*(n+1) + i } mcmf := NewMinCostFlow(5*n+5, A(0), E(n)) for i := 0; i < n; i++ { mcmf.AddEdge(A(i), A(i+1), n, 0) mcmf.AddEdge(B(i), B(i+1), n, 0) mcmf.AddEdge(C(i), C(i+1), n, 0) mcmf.AddEdge(D(i), D(i+1), n, 0) mcmf.AddEdge(E(i), E(i+1), n, 0) } for i := 0; i < n; i++ { if s[i] == 'y' { mcmf.AddEdge(A(i), B(i+1), 1, -scores[i]) } else if s[i] == 'u' { mcmf.AddEdge(B(i), C(i+1), 1, -scores[i]) } else if s[i] == 'k' { mcmf.AddEdge(C(i), D(i+1), 1, -scores[i]) } else if s[i] == 'i' { mcmf.AddEdge(D(i), E(i+1), 1, -scores[i]) } } slopes := mcmf.Work() res := 0 for _, slope := range slopes { res = max(res, -slope[1]) } return res } func max(a, b int) int { if a > b { return a } return b } type MinCostFlow struct { AddEdge func(from, to, cap, cost int) Work func() [][2]int } func NewMinCostFlow(n, start, end int) *MinCostFlow { type neighbor struct { to int rid int // rid 为反向边在邻接表中的下标 cap int // 边的残量 cost int eid int // -1表示是反向边 } graph := make([][]neighbor, n) ei := 0 addEdge := func(from, to, cap, cost, eid int) { graph[from] = append(graph[from], neighbor{to, len(graph[to]), cap, cost, eid}) graph[to] = append(graph[to], neighbor{from, len(graph[from]) - 1, 0, -cost, -1}) } dist := make([]int, len(graph)) type vi struct{ v, i int } pre := make([]vi, len(graph)) spfa := func() bool { for i := range dist { dist[i] = INF } dist[start] = 0 inQueue := make([]bool, len(graph)) inQueue[start] = true queue := []int{start} for len(queue) > 0 { cur := queue[0] queue = queue[1:] inQueue[cur] = false for i, edge := range graph[cur] { if edge.cap == 0 { continue } next := edge.to if cand := dist[cur] + int(edge.cost); cand < dist[next] { dist[next] = cand pre[next] = vi{cur, i} if !inQueue[next] { queue = append(queue, next) inQueue[next] = true } } } } return dist[end] < INF } ek := func() (slopes [][2]int) { maxFlow, minCost := 0, 0 for spfa() { // 沿 st-end 的最短路尽量增广 flow := INF for cur := end; cur != start; { p := pre[cur] if c := graph[p.v][p.i].cap; c < flow { flow = c } cur = p.v } for cur := end; cur != start; { p := pre[cur] edge := &graph[p.v][p.i] edge.cap -= flow graph[cur][edge.rid].cap += flow cur = p.v } maxFlow += flow minCost += dist[end] * flow slopes = append(slopes, [2]int{maxFlow, minCost}) } return } AddEdge := func(from, to, cap, cost int) { addEdge(from, to, cap, cost, ei) ei++ } return &MinCostFlow{ AddEdge: AddEdge, Work: ek, } } func main() { in := bufio.NewReader(os.Stdin) out := bufio.NewWriter(os.Stdout) defer out.Flush() var n int fmt.Fscan(in, &n) var s string fmt.Fscan(in, &s) scores := make([]int, n) for i := 0; i < n; i++ { fmt.Fscan(in, &scores[i]) } fmt.Fprintln(out, removeYuki(s, scores)) }