1. 程式人生 > 實用技巧 >洛谷 P3275 [SCOI2011]糖果

洛谷 P3275 [SCOI2011]糖果

傳送門

AcWing 1169 糖果

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
using p = pair<int, int>;
const double pi(acos(-1));
const int inf(0x3f3f3f3f);
const int mod(1e9 + 7);
const int maxn(1e5 + 10);
bool vis[maxn];
int ecnt, head[maxn], cnt[maxn];
ll dis[maxn];

struct edge {
    int to, wt, nxt;
} edges[maxn * 3];

template<typename T = int>
inline const T read()
{
    T x = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9') {
        if (ch == '-') f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9') {
        x = (x << 3) + (x << 1) + ch - '0';
        ch = getchar();
    }
    return x * f;
}

template<typename T>
inline void write(T x, bool ln)
{
    if (x < 0) {
        putchar('-');
        x = -x;
    }
    if (x > 9) write(x / 10, false);
    putchar(x % 10 + '0');
    if (ln) putchar(10);
}

void addEdge(int u, int v, int w)
{
    edges[ecnt].to = v;
    edges[ecnt].wt = w;
    edges[ecnt].nxt = head[u];
    head[u] = ecnt++;
}

bool spfa(int n)
{
    memset(dis, -0x3f, sizeof dis);
    dis[0] = 0;
    stack<int> st;
    st.push(0);
    vis[0] = true;
    while (not st.empty()) {
        int u = st.top();
        st.pop();
        vis[u] = false;
        for (int i = head[u]; compl i; i = edges[i].nxt) {
            int v = edges[i].to, w = edges[i].wt;
            if (dis[v] < dis[u] + w) {
                dis[v] = dis[u] + w;
                if (not vis[v]) {
                    vis[v] = true;
                    st.push(v);
                    cnt[v] = cnt[u] + 1;
                    if (cnt[v] >= n + 1) {
                        return false;
                    }
                }
            }
        }
    }
    return true;
}

int main()
{
#ifdef ONLINE_JUDGE
#else
    freopen("input.txt", "r", stdin);
#endif
    ios::sync_with_stdio(false);
    memset(head, -1, sizeof head);
    int n = read(), k = read();
    while (k--) {
        int x = read(), u = read(), v = read();
        if (x == 1) {
            addEdge(v, u, 0);
            addEdge(u, v, 0);
        } else if (x == 2) {
            addEdge(u, v, 1);
        } else if (x == 3) {
            addEdge(v, u, 0);
        } else if (x == 4) {
            addEdge(v, u, 1);
        } else {
            addEdge(u, v, 0);
        }
    }
    for (int i = 1; i <= n; ++i) {
        addEdge(0, i, 1);
    }
    if (spfa(n)) {
        printf("%lld\n", accumulate(dis + 1, dis + 1 + n, 0ll));
    } else {
        printf("-1\n");
    }
    return 0;
}