Submission #900375

# Submission time Handle Problem Language Result Execution time Memory
900375 2024-01-08T08:04:07 Z abcvuitunggio Islands (IOI08_islands) C++17
0 / 100
2000 ms 131076 KB
#include <bits/stdc++.h>
using namespace std;
const int mxn=1000001;
const long long INF=1e18;
vector <int> ke[mxn],ve[mxn],V[mxn],tmp;
int n,p[mxn],l[mxn],vis[mxn],vis2[mxn],root[mxn],idx,sz,x;
long long dp[mxn],dp2[mxn],d[mxn],mx,res,a,b,sum,s;
void dfs(int u){
    for (int v:ke[u]){
        d[v]=d[u]+l[v];
        dfs(v);
        dp[u]=max(dp[u],dp[v]+l[v]);
    }
}
void dfs2(int u){
    pair <long long, int> mx={-1,0},mx2={-1,0};
    for (int v:ke[u]){
        auto tmp=make_pair(dp[v]+l[v],v);
        if (tmp>mx){
            mx2=mx;
            mx=tmp;
        }
        else
            mx2=max(mx2,tmp);
    }
    for (int v:ke[u]){
        dp2[v]=max(dp2[u],(mx.second==v?mx2.first:mx.first))+l[v];
        dfs2(v);
    }
}
int main(){
    ios_base::sync_with_stdio(NULL);cin.tie(nullptr);
    cin >> n;
    for (int i=1;i<=n;i++)
        cin >> p[i] >> l[i];
    for (int i=1;i<=n;i++)
        if (!vis[i]){
            x=i;
            while (true){
                tmp.push_back(i);
                vis2[i]=tmp.size();
                i=p[i];
                if (vis[i]){
                    for (int j:tmp){
                        root[j]=root[i];
                        ke[p[j]].push_back(j);
                        vis[j]=1;
                    }
                    break;
                }
                if (vis2[i]){
                    for (int j=vis2[i]-1;j<tmp.size();j++){
                        root[tmp[j]]=tmp[j];
                        ve[idx].push_back(tmp[j]);
                    }
                    for (int j=0;j<vis2[i]-1;j++){
                        root[tmp[j]]=i;
                        ke[tmp[j+1]].push_back(tmp[j]);
                    }
                    for (int j:tmp)
                        vis[j]=1;
                    idx++;
                    break;
                }
            }
            i=x;
        }
    for (int i=1;i<=n;i++)
        if (root[i]==i){
            dfs(i);
            dfs2(i);
        }
    delete ke;
    delete vis;
    delete vis2;
    for (int i=1;i<=n;i++)
        V[root[i]].push_back(i);
    for (int i=0;i<idx;i++){
        sz=ve[i].size(),sum=0,a=-INF,b=-INF;
        for (int j:ve[i])
            sum+=l[j];
        mx=0,s=sum;
        for (int j=sz-1;j>=0;j--){
            for (int u:V[ve[i][j]])
                mx=max(mx,max(max(dp[u],dp2[u]),d[u]+max(a-s,b+sum+s)));
            a=max(a,dp[ve[i][j]]+s);
            b=max(b,dp[ve[i][j]]-s);
            s-=l[ve[i][(j?j:sz)-1]];
        }
        res+=mx;
    }
    cout << res;
}

Compilation message

islands.cpp: In function 'int main()':
islands.cpp:52:43: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |                     for (int j=vis2[i]-1;j<tmp.size();j++){
      |                                          ~^~~~~~~~~~~
islands.cpp:73:12: warning: deleting array 'ke'
   73 |     delete ke;
      |            ^~
islands.cpp:74:12: warning: deleting array 'vis'
   74 |     delete vis;
      |            ^~~
islands.cpp:75:12: warning: deleting array 'vis2'
   75 |     delete vis2;
      |            ^~~~
# Verdict Execution time Memory Grader output
1 Execution timed out 2232 ms 131076 KB Time limit exceeded
2 Execution timed out 2033 ms 80984 KB Time limit exceeded
3 Execution timed out 2245 ms 131072 KB Time limit exceeded
4 Runtime error 44 ms 131072 KB Execution killed with signal 9
5 Runtime error 49 ms 131072 KB Execution killed with signal 9
6 Execution timed out 2197 ms 131072 KB Time limit exceeded
7 Runtime error 43 ms 131072 KB Execution killed with signal 9
8 Execution timed out 2088 ms 81500 KB Time limit exceeded
9 Runtime error 40 ms 131072 KB Execution killed with signal 9
10 Runtime error 44 ms 131072 KB Execution killed with signal 9
11 Execution timed out 2021 ms 80984 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Runtime error 61 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 109 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 108 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 146 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 162 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 136 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 175 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 252 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -