답안 #765233

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
765233 2023-06-24T09:34:50 Z vjudge1 Roadside Advertisements (NOI17_roadsideadverts) C++14
7 / 100
1000 ms 9696 KB
#include<bits/stdc++.h>
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")
using namespace std;
// mt19937 rnd  (chrono::steady_clock::now().time_since_epoch().count());
#define sz(s) int(s.size())
#define ll long long
#define int long long
// #define ull unsigned long long
#define F first
#define S second
#define pb push_back
#define all(v) v.begin(), v.end()
// #define int ll
#define file(s) freopen(s".in", "r", stdin); freopen(s".out", "w", stdout)
const int N=1e5+7;
vector<vector<pair<int, int> > > g(N);
int ans=0, dp[N];
int f[N];
void dfs(int v, int cnt, int p) {
    for(auto to : g[v]) {
        if(to.F!=p) {
            dp[to.F]=dp[v]+to.S;
            if(f[to.F]) {
                dfs(to.F, to.F, v);
                ans+=dp[to.F]-dp[cnt];
                // cout << v << ' ' << cnt << ' ' << dp[v] << ' ' << dp[cnt] << '\n';
            }else {
                dfs(to.F, cnt, v);
            }
        }
    }
}
signed main() {
    int n;
    cin>>n;
    for(int i=1; i<n; i++) {
        int x, y, w;
        cin>>x>>y>>w;
        g[x].pb({y, w});
        g[y].pb({x, w});    
    }
    int q;
    cin>>q;
    // if(q>100) {
    //     cout << "100\n";
    //     return;
    // }
    while(q--) {
        ans=0;
        int a, b, c, d, e;
        cin>>a>>b>>c>>d>>e;
        for(int i=0; i<=n; i++)f[i]=0;
        f[a]=1, f[b]=1, f[c]=1, f[d]=1, f[e]=1;
        dp[a]=0;
        dfs(a, a, a);
        cout << ans << '\n'; 
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2644 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1077 ms 9696 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 144 ms 5892 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2644 KB Output is correct
2 Execution timed out 1077 ms 9696 KB Time limit exceeded
3 Halted 0 ms 0 KB -