結果
問題 | No.1288 yuki collection |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-11-13 22:55:44 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,675 bytes |
コンパイル時間 | 889 ms |
コンパイル使用メモリ | 141,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 09:54:36 |
合計ジャッジ時間 | 21,591 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } // Dijkstra class MinCostFlow(Capa, Cost, Capa CAPA_EPS = 0) { int n, m; int[][] g; int[] as, bs; Capa[] capa; Cost[] cost, pot; Capa tof; Cost toc; this(int n) { this.n = n; m = 0; g = new int[][n]; as = []; bs = []; capa = []; cost = []; } int addEdge(int u, int v, Capa w, Cost c) { debug { writeln("addEdge ", u, " ", v, " ", w, " ", c); } const i = m; g[u] ~= m; as ~= u; bs ~= v; capa ~= w; cost ~= c; ++m; g[v] ~= m; as ~= v; bs ~= u; capa ~= 0; cost ~= -c; ++m; return i; } bool solve(int source, int sink, Capa flow) { pot = new Cost[n]; pot[] = 0; for (; ; ) { bool cont; foreach (u; 0 .. n) foreach (i; g[u]) if (capa[i] > CAPA_EPS) { const v = bs[i]; if (pot[v] > pot[u] + cost[i]) { pot[v] = pot[u] + cost[i]; cont = true; } } if (!cont) break; } auto dist = new Cost[n]; auto prei = new int[n]; auto vis = new bool[n]; for (tof = 0, toc = 0; tof + CAPA_EPS < flow; ) { alias Entry = Tuple!(Cost, "c", int, "u"); BinaryHeap!(Array!Entry, "a > b") que; dist[] = -1; prei[] = -1; vis[] = false; dist[source] = 0; prei[source] = -2; que.insert(Entry(0, source)); for (; !que.empty(); ) { const c = que.front.c; const u = que.front.u; que.removeFront; if (vis[u]) continue; vis[u] = true; foreach (i; g[u]) if (capa[i] > CAPA_EPS) { const v = bs[i]; if (vis[v]) continue; const cc = c + cost[i] + pot[u] - pot[v]; if (prei[v] == -1 || dist[v] > cc) { dist[v] = cc; prei[v] = i; que.insert(Entry(cc, v)); } } } if (!vis[sink]) return false; Capa f = flow - tof; for (int v = sink; v != source; ) { const i = prei[v]; if (f > capa[i]) f = capa[i]; v = as[i]; } for (int v = sink; v != source; ) { const i = prei[v]; capa[i] -= f; capa[i ^ 1] += f; v = as[i]; } tof += f; toc += f * (dist[sink] - pot[source] + pot[sink]); pot[] += dist[]; } return true; } } void main() { try { for (; ; ) { const N = readInt(); const S = readToken(); auto V = new long[N]; foreach (i; 0 .. N) { V[i] = readLong(); } auto mcf = new MinCostFlow!(int, long)(N * 2 + 2); // mcf.addEdge(N * 2 + 1, N * 2, N, 0); foreach (i; 0 .. N) { if (S[i] == 'y') { mcf.addEdge(N * 2, i * 2, N, 0); } if (S[i] == 'i') { mcf.addEdge(i * 2 + 1, N * 2 + 1, N, 0); } mcf.addEdge(i * 2, i * 2 + 1, 1, -V[i]); foreach (j; i + 1 .. N) { if (S[i] == S[j]) { debug { writeln("? ", i, " ", j); } mcf.addEdge(i * 2, j * 2, N, 0); break; } } foreach (j; i + 1 .. N) { if ((S[i] == 'y' && S[j] == 'u') || (S[i] == 'u' && S[j] == 'k') || (S[i] == 'k' && S[j] == 'i')) { debug { writeln("! ", i, " ", j); } mcf.addEdge(i * 2 + 1, j * 2, N, 0); break; } } } // const res = mcf.solve(); mcf.solve(N * 2, N * 2 + 1, N); const res = mcf.toc; writeln(-res); assert(false); } } catch (EOFException e) { } }