結果

問題 No.2439 Fragile Apple Tree
ユーザー 👑 potato167potato167
提出日時 2023-08-16 22:16:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,324 bytes
コンパイル時間 10,575 ms
コンパイル使用メモリ 349,092 KB
実行使用メモリ 160,828 KB
最終ジャッジ日時 2024-11-25 13:08:01
合計ジャッジ時間 44,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
157,448 KB
testcase_01 AC 697 ms
101,852 KB
testcase_02 AC 589 ms
101,944 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 589 ms
102,940 KB
testcase_06 AC 594 ms
102,768 KB
testcase_07 AC 469 ms
91,616 KB
testcase_08 AC 459 ms
91,616 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 486 ms
100,952 KB
testcase_15 AC 519 ms
103,460 KB
testcase_16 AC 579 ms
102,272 KB
testcase_17 AC 567 ms
103,336 KB
testcase_18 AC 346 ms
63,280 KB
testcase_19 AC 223 ms
52,088 KB
testcase_20 AC 125 ms
27,336 KB
testcase_21 AC 27 ms
8,532 KB
testcase_22 AC 341 ms
87,052 KB
testcase_23 AC 133 ms
28,448 KB
testcase_24 AC 178 ms
49,636 KB
testcase_25 AC 234 ms
50,108 KB
testcase_26 AC 324 ms
57,868 KB
testcase_27 AC 196 ms
52,456 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 393 ms
103,240 KB
testcase_32 AC 386 ms
160,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*

cd 9996-testcase
g++ -std=gnu++17 -O2 -o val_potato p_val_potato.cpp
for i in test_in/*;
do
	echo "processing $i ..."
	#sed -e 's/\r$//g' $i | ./val_potato > ans.txt
	./val_potato < $i > ans.txt
	diff ans.txt test_out/${i:8}
done
rm ans.txt
rm val_potato
cd ../

*/


#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include "testlib.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;

const int MIN_N=2,MAX_N=3e5;
const int MIN_Q=1,MAX_Q=3e5;
const ll MIN_C=1,MAX_C=1e15;
const int MIN_V=2;
const ll MIN_X=1,MAX_X=1e9;

int main(){
	registerValidation();
	const int N=inf.readInt(MIN_N,MAX_N);
	inf.readSpace();
	const int Q=inf.readInt(MIN_Q,MAX_Q);
	inf.readEoln();
	vector<int> A(N-1),B(N-1);
	vector<ll> C(N-1);
	vector<vector<int>> G(N);
	rep(i,0,N-1){
		A[i]=inf.readInt(1,N);
		inf.readSpace();
		B[i]=inf.readInt(1,N);
		inf.readSpace();
		C[i]=inf.readLong(MIN_C,MAX_C);
		inf.readEoln();
		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){
		//check connect
		ensure((int)order.size()>i);
		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);
	bool q2=0;
	vector<bool> remain(N,1);
	rep(rp,0,Q){
		int t=inf.readInt(1,2);
		if(t==1){
			inf.readSpace();
			int u=inf.readInt(MIN_V,N);
			inf.readSpace();
			ll x=inf.readLong(MIN_X,MAX_X);
			u--;
			ensure(remain[u]);
			while(u){
				V[u]+=x;
				if(C[u]<=V[u]){
					int tmp=u;
					order={u};
					rep(i,0,(int)order.size()){
						int a=order[i];
						remain[a]=0;
						for(auto x:G[a]){
							if(remain[x]&&pare[x]==a) order.push_back(x);
						}
					}
					while(u){
						u=pare[u];
						V[u]+=x;
						V[u]-=V[tmp];
						wei[u]-=wei[tmp];
					}
					break;
				}
				u=pare[u];
			}
		}
		if(t==2){
			q2=1;
			cout<<wei[0]<<"\n";
		}
		inf.readEoln();
	}
	ensure(q2);
	inf.readEof();
}
0