結果

問題 No.1288 yuki collection
ユーザー satashunsatashun
提出日時 2020-11-13 22:35:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,961 ms / 5,000 ms
コード長 4,700 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 215,576 KB
実行使用メモリ 5,664 KB
最終ジャッジ日時 2023-09-30 03:37:51
合計ジャッジ時間 50,594 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 5 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 1,888 ms
5,492 KB
testcase_14 AC 1,885 ms
5,556 KB
testcase_15 AC 1,527 ms
5,312 KB
testcase_16 AC 1,529 ms
5,384 KB
testcase_17 AC 1,919 ms
5,444 KB
testcase_18 AC 1,890 ms
5,500 KB
testcase_19 AC 1,957 ms
5,476 KB
testcase_20 AC 1,961 ms
5,664 KB
testcase_21 AC 1,865 ms
5,464 KB
testcase_22 AC 1,804 ms
5,564 KB
testcase_23 AC 1,822 ms
5,448 KB
testcase_24 AC 1,899 ms
5,420 KB
testcase_25 AC 1,894 ms
5,496 KB
testcase_26 AC 1,908 ms
5,440 KB
testcase_27 AC 1,529 ms
5,564 KB
testcase_28 AC 1,627 ms
5,444 KB
testcase_29 AC 1,472 ms
5,460 KB
testcase_30 AC 1,277 ms
5,500 KB
testcase_31 AC 1,335 ms
5,428 KB
testcase_32 AC 1,292 ms
5,628 KB
testcase_33 AC 1,504 ms
5,236 KB
testcase_34 AC 1,865 ms
5,304 KB
testcase_35 AC 1,818 ms
5,260 KB
testcase_36 AC 1,644 ms
5,444 KB
testcase_37 AC 1,669 ms
5,480 KB
testcase_38 AC 1,470 ms
5,500 KB
testcase_39 AC 1,430 ms
5,232 KB
testcase_40 AC 1,295 ms
5,564 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using pii = pair<int, int>;
template <class T>
using V = vector<T>;
template <class T>
using VV = V<V<T>>;

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i, n) rep2(i, 0, n)
#define rep2(i, m, n) for (int i = m; i < (n); i++)
#define per(i, b) per2(i, 0, b)
#define per2(i, a, b) for (int i = int(b) - 1; i >= int(a); i--)
#define ALL(c) (c).begin(), (c).end()
#define SZ(x) ((int)(x).size())

constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); }

template <class T, class U>
void chmin(T &t, const U &u) {
    if (t > u) t = u;
}
template <class T, class U>
void chmax(T &t, const U &u) {
    if (t < u) t = u;
}

template <class T, class U>
ostream &operator<<(ostream &os, const pair<T, U> &p) {
    os << "(" << p.first << "," << p.second << ")";
    return os;
}

template <class T>
ostream &operator<<(ostream &os, const vector<T> &v) {
    os << "{";
    rep(i, v.size()) {
        if (i) os << ",";
        os << v[i];
    }
    os << "}";
    return os;
}

#ifdef LOCAL
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
    cerr << " " << H;
    debug_out(T...);
}
#define debug(...) \
    cerr << __LINE__ << " [" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#define dump(x) cerr << __LINE__ << " " << #x << " = " << (x) << endl
#else
#define debug(...) (void(0))
#define dump(x) (void(0))
#endif

using R = __int128_t;

template <class C, class D>  // capacity, distance
struct MinCostFlow {
    struct edge {
        int to, rev;
        C cap;
        D cost;
        edge(int to, C cap, D cost, int rev)
            : to(to), cap(cap), cost(cost), rev(rev){};
    };

    using E = edge;

    const D INF = numeric_limits<ll>::max() / D(3);

    int n;
    VV<E> g;
    V<D> h, dst;
    V<int> prevv, preve;

    MinCostFlow(int n) : n(n), g(n), h(n), dst(n), prevv(n), preve(n) {}

    void add_edge(int f, int t, C cap, D cost) {
        g[f].emplace_back(t, cap, cost, (int)g[t].size());
        g[t].emplace_back(f, 0, -cost, (int)g[f].size() - 1);
    }

    // true : no negative cycle
    bool init_negative(int s) {
        fill(h.begin(), h.end(), INF);
        h[s] = 0;
        for (int t = 0; t <= n; ++t) {
            for (int i = 0; i < n; ++i) {
                for (auto e : g[i]) {
                    if (!e.cap) continue;
                    if (h[e.to] > h[i] + e.cost && t == n) {
                        return false;
                    }
                    h[e.to] = min(h[e.to], h[i] + e.cost);
                }
            }
        }
        return true;
    }

    D exec(int s, int t, C f) {
        D res = 0;
        using Data = pair<D, int>;
        while (f > 0) {
            priority_queue<Data, vector<Data>, greater<Data>> que;
            fill(dst.begin(), dst.end(), INF);
            dst[s] = 0;
            que.push(Data(0, s));

            while (!que.empty()) {
                auto p = que.top();
                que.pop();
                int v = p.second;
                if (dst[v] < p.first) continue;

                rep(i, g[v].size()) {
                    auto e = g[v][i];
                    D nd = dst[v] + e.cost + h[v] - h[e.to];
                    if (e.cap > 0 && dst[e.to] > nd) {
                        dst[e.to] = nd;
                        prevv[e.to] = v;
                        preve[e.to] = i;
                        que.push(Data(dst[e.to], e.to));
                    }
                }
            }

            if (dst[t] == INF) return res;
            rep(i, n) h[i] += dst[i];
            if (h[t] >= 0) break;

            C d = f;
            for (int v = t; v != s; v = prevv[v]) {
                d = min(d, g[prevv[v]][preve[v]].cap);
            }
            f -= d;
            res += d * h[t];
            if (h[t] >= 0) break;
            for (int v = t; v != s; v = prevv[v]) {
                edge &e = g[prevv[v]][preve[v]];
                e.cap -= d;
                g[v][e.rev].cap += d;
            }
        }

        return res;
    }
};

const string T = "yuki";

int main() {
    int N;
    string S;
    cin >> N >> S;
    V<ll> a(N);
    rep(i, N) cin >> a[i];
    int cnt = N * 5;
    MinCostFlow<R, R> g(cnt);

    rep(i, N - 1) {
        rep(j, 5) { g.add_edge(j * N + i, j * N + i + 1, N, 0); }
    }
    rep(i, N) {
        rep(j, 4) {
            if (S[i] == T[j]) {
                g.add_edge(j * N + i, (j + 1) * N + i, 1, -a[i]);
            }
        }
    }
    g.init_negative(0);
    cout << -ll(g.exec(0, 5 * N - 1, N)) << endl;

    return 0;
}
0