제출 #217674

#제출 시각아이디문제언어결과실행 시간메모리
217674mhy908Islands (IOI08_islands)C++14
90 / 100
1291 ms131076 KiB
#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define sortvec(x) sort(all(x))
#define compress(x) x.erase(unique(all(x)), x.end())
using namespace std;
typedef long long LL;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef pair<int, LL> pil;
typedef pair<LL, int> pli;
const LL llinf=1987654321987654321;
const int inf=2000000000;
int n;
vector<pii> link[1000010];

bool ch[1000010];
void chdfs(int num, int par1, int par2){
    ch[num]=true;
    for(auto i:link[num]){
        if(i.F==par1||i.F==par2)continue;
        chdfs(i.F, num, par2);
    }
}

LL ret, ans;
vector<int> cyc;
vector<LL> sum;
LL get_cyc(int num, int par){
    if(ch[num]){
        cyc.pb(num);
        sum.pb(0);
        return 0;
    }
    ch[num]=true;
    int t=0;
    for(auto i:link[num]){
        if(i.F==par&&!t){
            t++;
            continue;
        }
        LL temp=get_cyc(i.F, num)+i.S;
        if(temp>=0){
            cyc.pb(num);
            sum.pb(temp);
            if(cyc[0]==num)return -llinf;
            return temp;
        }
    }
    return -llinf;
}

LL get_maxd(int num, int par1, int par2){
    LL ret2=0;
    for(auto i:link[num]){
        if(i.F==par1||i.F==par2)continue;
        LL temp=get_maxd(i.F, num, num)+i.S;
        ret=max(ret, ret2+temp);
        ret2=max(ret2, temp);
    }
    return ret2;
}

LL solve(int num){
    vector<int>().swap(cyc);
    vector<LL>().swap(sum);
    ret=0;
    get_cyc(num, 0);
    chdfs(cyc[0], 0, cyc[0]);
    LL max1=llinf, max2=-llinf, dia=sum.back();
    cyc.pop_back();
    sum.pop_back();
    int sz=cyc.size();
    for(int i=0; i<sz; i++){
        LL tmp=get_maxd(cyc[i], cyc[(i+sz-1)%sz], cyc[(i+1)%sz]);
        ret=max(ret, sum[i]+tmp-max1);
        ret=max(ret, dia-sum[i]+tmp+max2);
        max2=max(max2, sum[i]+tmp);
        max1=min(max1, sum[i]-tmp);
    }
    return ret;
}

int main(){
    scanf("%d", &n);
    for(int i=1; i<=n; i++){
        int a; LL b;
        scanf("%d %d", &a, &b);
        link[i].pb(mp(a, b));
        link[a].pb(mp(i, b));
    }
    for(int i=1; i<=n; i++){
        if(ch[i])continue;
        ans+=solve(i);
    }
    printf("%lld", ans);
}

컴파일 시 표준 에러 (stderr) 메시지

islands.cpp: In function 'int main()':
islands.cpp:91:30: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'LL* {aka long long int*}' [-Wformat=]
         scanf("%d %d", &a, &b);
                            ~~^
islands.cpp:88:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
     ~~~~~^~~~~~~~~~
islands.cpp:91:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &a, &b);
         ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...