Submission #650678

# Submission time Handle Problem Language Result Execution time Memory
650678 2022-10-14T16:23:21 Z Spade1 Islands (IOI08_islands) C++14
0 / 100
335 ms 131072 KB
#include<bits/stdc++.h>
#define pii pair<int, int>
#define pll pair<long long, long long>
#define ll long long
#define ld long double
#define st first
#define nd second
#define pb push_back
#define INF INT_MAX
using namespace std;

const int N = 1e6 + 10;

vector<pair<int, pll>> adj[N];
bool vis[N];

int cycle;

vector<pll> v;
ll dp[N], qs[N], ans, cur;

pll dfs2(int i, int prt1, int prt2) {
    ll mx_w = 0, mx = i;
    for (auto [j, w] : adj[i]) {
        if (j == prt1 || j == prt2) continue;
        pll ret = dfs2(j, i, 0);
        if (ret.nd + w.nd > mx_w) {
            mx_w = ret.nd + w.nd;
            mx = ret.st;
        }
    }
    return {mx, mx_w};
}

int dfs(int i, int ed, int prt) {
    if (vis[i]) {
        cycle = prt;
        return i;
    }
    vis[i] = 1;
    int ret = 0, K, W;
    for (auto [j, w] : adj[i]) {
        if (j == prt && ed == w.st) continue;
        if (ret != 0 && vis[j]) continue;
        int k = dfs(j, w.st, i);
        if (k) {
            ret = k;
            K = j;
            W = w.nd;
        }
    }
    if (ret == i) {
        auto [val, w] = dfs2(i, K, cycle);
        v.pb({w, W});
        return 0;
    }
    else if (ret) {
        auto [val, w] = dfs2(i, prt, K);
        v.pb({w, W});
    }
    return ret;
}

void solve() {
    int n; cin >> n;
    for (int i = 1; i <= n; ++i) {
        int b, w; cin >> b >> w;
        adj[i].pb({b ,{i, w}});
        adj[b].pb({i, {i, w}});
    }

    for (int i = 1; i <= n; ++i) {
        if (vis[i]) continue;
        dfs(i, 0, 0);
        int m = v.size();
        for (auto j : v) cout << j.st << " " << j.nd << '\n';
        cout << '\n';
        for (int j = 0; j <= m+1; ++j) qs[j] = 0, dp[j] = 0;
        for (int j = 1; j <= m; ++j) {
            qs[j] = qs[j-1] + v[j-1].nd;
            dp[j] = qs[j] + v[j-1].st;
        }
        for (int j = m-1; j > 0; --j) dp[j] = max(dp[j], dp[j+1]);
        for (int j = 1; j < m; ++j) {
            cur = max(cur, v[j-1].st - qs[j] + dp[j+1]);
        }
        for (int j = 0; j <= m+1; ++j) dp[j] = 0;
        for (int j = m; j >= 1; --j) {
            dp[j] = qs[j] + v[j-1].st;
        }
        for (int j = 2; j <= m; ++j) dp[j] = max(dp[j], dp[j-1]);
        for (int j = 2; j <= m; ++j) {
            cur = max(cur, qs[m] + v[j-1].st - qs[j] + dp[j-1]);
        }
        ans += cur;
        v.clear();
        cur = 0, cycle = 0;
    }
    cout << ans << '\n';
}

int main() {
    ios_base::sync_with_stdio(0); cin.tie(NULL);
    int t = 1;
//    cin >> t;
    while (t--) {
        solve();
    }
}

Compilation message

islands.cpp: In function 'std::pair<long long int, long long int> dfs2(int, int, int)':
islands.cpp:24:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   24 |     for (auto [j, w] : adj[i]) {
      |               ^
islands.cpp: In function 'int dfs(int, int, int)':
islands.cpp:42:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   42 |     for (auto [j, w] : adj[i]) {
      |               ^
islands.cpp:53:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   53 |         auto [val, w] = dfs2(i, K, cycle);
      |              ^
islands.cpp:58:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   58 |         auto [val, w] = dfs2(i, prt, K);
      |              ^
islands.cpp:53:41: warning: 'K' may be used uninitialized in this function [-Wmaybe-uninitialized]
   53 |         auto [val, w] = dfs2(i, K, cycle);
      |                                         ^
# Verdict Execution time Memory Grader output
1 Incorrect 13 ms 23764 KB Output isn't correct
2 Incorrect 12 ms 23764 KB Output isn't correct
3 Incorrect 12 ms 23892 KB Output isn't correct
4 Incorrect 14 ms 23764 KB Output isn't correct
5 Incorrect 13 ms 23756 KB Output isn't correct
6 Incorrect 14 ms 23764 KB Output isn't correct
7 Incorrect 13 ms 23764 KB Output isn't correct
8 Incorrect 13 ms 23716 KB Output isn't correct
9 Incorrect 14 ms 23820 KB Output isn't correct
10 Incorrect 13 ms 23764 KB Output isn't correct
11 Incorrect 13 ms 23824 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 23952 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 23960 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 21 ms 25464 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 51 ms 31328 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 101 ms 42900 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 173 ms 60276 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 309 ms 95128 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 335 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -