結果

問題 No.386 貪欲な領主
ユーザー chocoruskchocorusk
提出日時 2019-01-13 11:21:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 1,004 ms
コンパイル使用メモリ 98,104 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-06-07 12:40:42
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 278 ms
23,040 KB
testcase_05 AC 232 ms
16,896 KB
testcase_06 AC 233 ms
16,896 KB
testcase_07 AC 6 ms
5,760 KB
testcase_08 AC 36 ms
6,912 KB
testcase_09 AC 7 ms
5,888 KB
testcase_10 AC 4 ms
5,760 KB
testcase_11 AC 3 ms
5,760 KB
testcase_12 AC 5 ms
5,888 KB
testcase_13 AC 9 ms
6,272 KB
testcase_14 AC 255 ms
16,896 KB
testcase_15 AC 250 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
vector<int> g[100000];
int d[100000];
int p[17][100000];
bool used[100000];
ll ct[100000];
void dfs0(int x){
	used[x]=1;
	for(auto y:g[x]){
		if(!used[y]){
			d[y]=d[x]+1;
			ct[y]+=ct[x];
			p[0][y]=x;
			dfs0(y);
		}
	}
}
int lca(int a, int b){
	if(d[a]>d[b]) swap(a, b);
    int a1=a, b1=b;
    int dd=d[b]-d[a], i=0;
    while(dd>0){
        if(dd%2==1){
            b1=p[i][b1];
        }
        dd/=2;
        i++;
    }
    if(a1==b1) return a1;
    for(int i=16; i>=0; i--){
        if(p[i][a1]!=p[i][b1]){
            a1=p[i][a1], b1=p[i][b1];
        }
    }
    return p[0][a1];
}
int main()
{
	int n;
	cin>>n;
	for(int i=0; i<n-1; i++){
		int u, v;
		cin>>u>>v;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	for(int i=0; i<n; i++) cin>>ct[i];
	dfs0(0);
	for(int i=1; i<17; i++){
        for(int x=0; x<n; x++){
            p[i][x]=p[i-1][p[i-1][x]];
        }
    }
	int m; cin>>m;
	ll ans=0;
	for(int i=0; i<m; i++){
		int a, b; ll c;
		cin>>a>>b>>c;
		int t=lca(a, b);
		ll s=ct[b]-ct[t]+ct[a];
		if(t>0) s-=ct[p[0][t]];
		ans+=(c*s);
	}
	cout<<ans<<endl;
	return 0;
}
0