結果

問題 No.1333 Squared Sum
ユーザー 沙耶花沙耶花
提出日時 2021-03-04 21:42:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 4,383 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 228,880 KB
実行使用メモリ 133,804 KB
最終ジャッジ日時 2024-04-15 13:44:45
合計ジャッジ時間 32,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 1,877 ms
115,472 KB
testcase_04 AC 1,826 ms
115,908 KB
testcase_05 AC 1,851 ms
115,788 KB
testcase_06 AC 1,782 ms
115,376 KB
testcase_07 AC 1,738 ms
115,232 KB
testcase_08 AC 1,786 ms
115,776 KB
testcase_09 AC 1,794 ms
115,292 KB
testcase_10 AC 1,766 ms
115,304 KB
testcase_11 AC 1,827 ms
115,604 KB
testcase_12 AC 1,922 ms
115,296 KB
testcase_13 AC 989 ms
131,480 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 985 ms
131,668 KB
testcase_30 AC 562 ms
49,732 KB
testcase_31 AC 241 ms
29,568 KB
testcase_32 AC 922 ms
70,776 KB
testcase_33 AC 673 ms
56,596 KB
testcase_34 AC 1,376 ms
93,432 KB
testcase_35 AC 946 ms
70,804 KB
testcase_36 AC 460 ms
43,540 KB
testcase_37 AC 477 ms
45,108 KB
testcase_38 AC 602 ms
51,996 KB
testcase_39 AC 1,098 ms
80,316 KB
testcase_40 AC 744 ms
100,388 KB
testcase_41 AC 722 ms
100,388 KB
testcase_42 AC 739 ms
100,388 KB
testcase_43 AC 740 ms
100,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000000

struct centroid_tree{
	
	vector<vector<int>> E;
	vector<int> cnt;
	int r;
	
	vector<vector<int>> pos;
	vector<vector<int>> bind;
	vector<vector<int>> childs;
	
	centroid_tree(vector<vector<int>> argE){
		int n = argE.size();
		E.resize(n,vector<int>());

		cnt.resize(n);
		r = go(0,argE);
		
		pos.resize(n);
		bind.resize(n);
		childs.resize(n);
		dfs(r,-1,E);
		build(r,0);
		
	}
	
	int go(int a,vector<vector<int>> &argE){
		
		dfs(a,-1,argE);
		
		int sz = cnt[a];
		
		int ret = dfs2(a,-1,argE,sz);

		rep(i,argE[ret].size()){
			int to = argE[ret][i];
			argE[to].erase(find(argE[to].begin(),argE[to].end(),ret));
			
			int g = go(to,argE);
			E[ret].push_back(g);
		}
		argE[ret].clear();

		return ret;
		
	}
	
	void dfs(int cur,int p,vector<vector<int>> &argE){
		cnt[cur] = 1;
		rep(i,argE[cur].size()){
			int to = argE[cur][i];
			if(to==p)continue;
			dfs(to,cur,argE);
			cnt[cur] += cnt[to];
		}
	}
	
	int dfs2(int cur,int p,vector<vector<int>> &argE,int sz){
		int ret = -1;
		int m = 0;
		rep(i,argE[cur].size()){
			int to = argE[cur][i];
			if(to==p)continue;
			ret = dfs2(to,cur,argE,sz);
			if(ret!=-1)return ret;
			m = max(m,cnt[to]);
		}
		
		if(sz-cnt[cur]<=sz/2 && m<=sz/2){
			ret = cur;
		}
		return ret;
		
	}
	
	void build(int cur,int d){
		bind[cur].push_back(0);
		rep(i,E[cur].size()){
			int to = E[cur][i];
			build(to,d+1);
			rep(j,childs[to].size()){
				int x = childs[to][j];
				childs[cur].push_back(x);
				if(pos[x].size()<=d)pos[x].resize(d+1,-1);
				pos[x][d] = i;
			}
			bind[cur].push_back(childs[cur].size());
		}
		int x = cur;
		childs[cur].push_back(x);
		if(pos[x].size()<=d)pos[x].resize(d+1,-1);
		pos[x][d] = E[cur].size();
		bind[cur].push_back(childs[cur].size());
	}
	
};
struct lca{
	
	vector<int> depth;//depth[i] 頂点iの深さ
	vector<vector<int>> parents;//parents[i][j] 頂点iから2^j個上の親
	
	int max_j = 30;
	
	lca(int n,vector<vector<int>> &E){
		depth.assign(E.size(),-1);
		parents.assign(E.size(),vector<int>(max_j,-1));
		
		stack<int> s;
		s.push(n);
		depth[n] = 0;
		while(s.size()!=0){
			int k = s.top();
			s.pop();
			for(int i=0;i<E[k].size();i++){
				int x = E[k][i];
				if(depth[x]!=-1)continue;
				s.push(x);
				depth[x] = depth[k]+1;
				for(int j=0;j<max_j;j++){
					if(j==0){
						parents[x][j] = k;
					}
					else{
						parents[x][j] = parents[parents[x][j-1]][j-1];
					}
					if(parents[x][j] == -1)break;
				}
			}
		}
	}
	
	//頂点uのk番目の親
	int kth_parent(int u,int k){
		for(int i=0;i<max_j;i++){
			if(k==0)break;
			if(u==-1)break;
			if(k%2){
				u = parents[u][i];
			}
			k/=2;
		}
		return u;
	}
	
	int query(int u,int v){
		if(depth[u]<depth[v])swap(u,v);
		u = kth_parent(u,depth[u]-depth[v]);
		
		if(u==v){
			return u;
		}
		
		for(int i=max_j-1;i>=0;i--){
			if(parents[u][i]!=parents[v][i]){
				u = parents[u][i];
				v = parents[v][i];
			}
		}
		
		return parents[u][0];
		
	}
	
	int get_distance(int u,int v){
		return depth[u]+depth[v]-2*depth[query(u,v)];
	}
	
	
};
mint get_dis(lca &H,vector<mint> &S,int u,int v){
	int l = H.query(u,v);
	mint ret = S[u] + S[v] - S[l]*2;
	return ret;
}

int main(){
	
	int n;
	cin>>n;
	
	vector<vector<int>> E(n);
	vector<vector<pair<int,mint>>> E2(n);
	rep(i,n-1){
		int u,v,w;
		scanf("%d %d %d",&u,&v,&w);
		u--;v--;
		E[u].push_back(v);
		E[v].push_back(u);
		E2[u].emplace_back(v,w);
		E2[v].emplace_back(u,w);
	}
	
	centroid_tree C(E);

	lca H(0,E);

	vector<mint> dis(n,0);
	vector<bool> visited(n,false);
	queue<int> Q;
	Q.push(0);
	visited[0] = true;
	while(Q.size()>0){
		int u = Q.front();
		Q.pop();
		rep(i,E2[u].size()){
			int v = E2[u][i].first;
			mint w = E2[u][i].second;
			if(visited[v])continue;
			visited[v] = true;
			dis[v] = dis[u] + w;
			Q.push(v);
		}
	}
	
	mint ans = 0;
	
	rep(i,n){
		mint sum = 0;
		mint temp = 0;
		int cur = 0;
		rep(j,C.childs[i].size()){
			mint d = get_dis(H,dis,i,C.childs[i][j]);
			ans += d*d * (C.bind[i].back() - (C.bind[i][cur+1] - C.bind[i][cur]));
			ans += d*2*sum;
			temp += d;
			if(j+1 == C.bind[i][cur+1]){
				cur++;
				sum += temp;
				temp = 0;
			}
		}
	}
	
	cout<<ans.val()<<endl;
	
    return 0;
}
0