Submission #84720

# Submission time Handle Problem Language Result Execution time Memory
84720 2018-11-17T02:28:30 Z updown1 Islands (IOI08_islands) C++17
21 / 100
543 ms 132096 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define For(i, a, b) for(int i=a; i<b; i++)
#define ffi For(i, 0, N)
#define ffj For(j, 0, M)
#define ffa ffi ffj
#define s <<" "<<
#define c <<" : "<<
#define w cout
#define e endl//"\n"
#define pb push_back
#define mp make_pair
#define a first
#define b second
#define int ll
const int MAXN=1000000, INF=1000000000;
///500,000,000
int N, comp[MAXN], cat, nonn[MAXN], siz[MAXN], st[MAXN], out, ns[MAXN], nd[MAXN], pre1[MAXN], pre2[MAXN], suf1[MAXN], suf2[MAXN];
bool vis[MAXN], cyc[MAXN];
queue<int> next1;
vector<pair<int, int> > adj[MAXN]; /// (node, cost)

void go(int at) {
    if (comp[at] != -1) return;
    comp[at] = cat;
    for (auto i: adj[at]) go(i.a);
}
void calc_size(int at) {
    if (vis[at]) return;
    vis[at] = true;
    for (auto i: adj[at]) if (!cyc[i.a]) {
        calc_size(i.a);
        siz[at] = max(siz[at], i.b+siz[i.a]);
    }
}
int solve (int x) {
    int ret = 0;
    int loc = 0; int at = st[x];
    //w<< "comp" s x <<e;
    while (at != st[x] || loc == 0) {
        //w<< at+1<<e;
        ns[loc] = siz[at];
        vis[at] = true;
        bool found = false;
        for (auto i: adj[at]) if (!vis[i.a]) {
            nd[loc] = i.b;
            at = i.a;
            found = true;
            break;
        }
        if (!found) {
            vis[st[x]] = false;
            for (auto i: adj[at]) if (!vis[i.a]) {
                nd[loc] = i.b;
                at = i.a;
            }
        }
        loc++;
    }
    //For (i, 0, loc) w<< ns[i] s nd[i]<<e;
    pre1[0] = ns[0];
    int curr = 0;
    For (i, 1, loc) {
        curr += nd[i-1];
        pre1[i] = max(pre1[i-1], curr+ns[i]);
    }
    //For (i, 0, loc) w<< "pre1" s i c pre1[i]<<e;
    suf1[0] = ns[0];
    suf1[loc-1] = nd[loc-1] + ns[loc-1];
    curr = nd[loc-1];
    for (int i=loc-2; i>=1; i--) {
        curr += nd[i];
        suf1[i] = max(suf1[i+1], curr+ns[i]);
    }
    //For (i, 0, loc) w<< "suf1" s i c suf1[i]<<e;
    For (i, 0, loc) ret = max(ret, pre1[i] + suf1[(i+1)%loc]);
    //w<< "from pass 1, ret =" s ret<<e;
    pre2[0] = ns[0];
    For (i, 1, loc) pre2[i] = max(pre2[i-1]+nd[i-1], ns[i]);
    //For (i, 0, loc) w<< "pre2" s i c pre2[i]<<e;
    suf2[loc-1] = ns[loc-1];
    for (int i=loc-2; i>=0; i--) suf2[i] = max(suf2[i+1]+nd[i], ns[i]);
    //For (i, 0, loc) w<< "suf2" s i c suf2[i]<<e;
    For (i, 0, loc) ret = max(ret, pre2[i]+suf2[i]);
    //w<< "after pass 2, ret =" s ret<<e;
    return ret;
}

main() {
    //ifstream cin("test.in");
    ios_base::sync_with_stdio(0); cin.tie(0);
    cin >> N;
    ffi {cyc[i] = true; comp[i] = -1; int b, d; cin >> b >> d; b--; assert(b != i); adj[i].pb(mp(b, d)); adj[b].pb(mp(i, d));}
    ffi if (comp[i] == -1) {go(i); cat++;}
    ffi if (adj[i].size() == 1) next1.push(i);
    while (!next1.empty()) {
        int at = next1.front(); next1.pop();
        if (!cyc[at]) continue;
        if (nonn[at] == adj[at].size()-1) {
            cyc[at] = false;
            for (auto i: adj[at]) {
                nonn[i.a]++;
                if (cyc[i.a]) next1.push(i.a);
            }
        }
    }
    //ffi w<< i+1 c cyc[i]<<e;
    ffi if (cyc[i]) {st[comp[i]] = i; calc_size(i);}
    ffi {
        vis[i] = false;
        if (!cyc[i]) vis[i] = true;
    }
    //ffi if (cyc[i]) w<< i+1 c siz[i]<<e;
    For (i, 0, cat) out += solve(i);
    w<< out<<e;
}

Compilation message

islands.cpp:90:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
islands.cpp: In function 'int main()':
islands.cpp:100:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if (nonn[at] == adj[at].size()-1) {
             ~~~~~~~~~^~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 29 ms 23928 KB Output is correct
2 Incorrect 23 ms 24136 KB Output isn't correct
3 Correct 23 ms 24136 KB Output is correct
4 Incorrect 22 ms 24136 KB Output isn't correct
5 Correct 24 ms 24136 KB Output is correct
6 Correct 22 ms 24160 KB Output is correct
7 Correct 22 ms 24252 KB Output is correct
8 Incorrect 23 ms 24252 KB Output isn't correct
9 Correct 22 ms 24252 KB Output is correct
10 Incorrect 22 ms 24252 KB Output isn't correct
11 Correct 22 ms 24252 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 23 ms 24292 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 24340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 32 ms 25772 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 56 ms 30720 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 148 ms 45260 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 241 ms 64328 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 439 ms 113556 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 543 ms 132096 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -