結果

問題 No.2439 Fragile Apple Tree
ユーザー 👑 potato167potato167
提出日時 2023-08-16 01:23:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,293 bytes
コンパイル時間 2,933 ms
コンパイル使用メモリ 223,352 KB
実行使用メモリ 68,652 KB
最終ジャッジ日時 2024-11-24 10:37:33
合計ジャッジ時間 35,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
63,756 KB
testcase_01 AC 441 ms
39,256 KB
testcase_02 AC 435 ms
34,000 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 422 ms
34,128 KB
testcase_06 AC 379 ms
34,128 KB
testcase_07 AC 289 ms
33,668 KB
testcase_08 AC 294 ms
33,804 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 275 ms
32,224 KB
testcase_15 AC 328 ms
34,124 KB
testcase_16 AC 381 ms
34,000 KB
testcase_17 AC 371 ms
34,000 KB
testcase_18 AC 245 ms
30,124 KB
testcase_19 AC 127 ms
16,576 KB
testcase_20 AC 74 ms
13,872 KB
testcase_21 AC 16 ms
5,248 KB
testcase_22 AC 197 ms
19,612 KB
testcase_23 AC 81 ms
11,040 KB
testcase_24 AC 113 ms
15,568 KB
testcase_25 AC 175 ms
24,500 KB
testcase_26 AC 221 ms
28,372 KB
testcase_27 AC 142 ms
18,380 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 245 ms
35,104 KB
testcase_32 AC 244 ms
68,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(p) p.begin(),p.end()
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)
const int mod=998244353;






int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,Q;
	cin>>N>>Q;
	vector<int> A(N-1),B(N-1);
	vector<ll> C(N-1);
	vector<vector<int>> G(N);
	rep(i,0,N-1){
		cin>>A[i]>>B[i]>>C[i];
		A[i]--,B[i]--;
		G[A[i]].push_back(B[i]);
		G[B[i]].push_back(A[i]);
	}
	vector<int> order={0},depth(N),wei(N),pare(N,-1);
	pare[0]=-2;
	rep(i,0,N){
		int a=order[i];
		for(auto b:G[a]){
			if(pare[b]==-1){
				pare[b]=a;
				order.push_back(b);
				depth[b]=depth[a]+1;
			}
		}
	}
	rep(i,0,N){
		int a=order[N-i-1];
		for(auto b:G[a]){
			if(pare[b]==a) wei[a]+=wei[b]; 
		}
		wei[a]++;
	}
	vector<ll> n_C(N),V(N);
	rep(i,0,N-1){
		if(depth[A[i]]>depth[B[i]]) swap(A[i],B[i]);
		n_C[B[i]]=C[i];
	}
	swap(n_C,C);
	rep(rp,0,Q){
		int t;
		cin>>t;
		if(t==1){
			int u;
			ll x;
			cin>>u>>x;
			u--;
			while(u){
				V[u]+=x;
				if(C[u]<=V[u]){
					int tmp=u;
					while(u){
						u=pare[u];
						V[u]+=x;
						V[u]-=V[tmp];
						wei[u]-=wei[tmp];
					}
					break;
				}
				u=pare[u];
			}
		}
		if(t==2){
			cout<<wei[0]<<"\n";
		}
	}
}
0