結果

問題 No.1216 灯籠流し/Lanterns
ユーザー autumn-eelautumn-eel
提出日時 2020-08-01 19:19:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,003 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 173,972 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-07-18 11:59:33
合計ジャッジ時間 20,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,808 KB
testcase_01 AC 4 ms
7,808 KB
testcase_02 AC 5 ms
7,936 KB
testcase_03 AC 5 ms
7,936 KB
testcase_04 AC 31 ms
11,136 KB
testcase_05 AC 102 ms
14,592 KB
testcase_06 AC 15 ms
8,832 KB
testcase_07 AC 88 ms
13,184 KB
testcase_08 AC 73 ms
11,520 KB
testcase_09 AC 43 ms
10,752 KB
testcase_10 AC 43 ms
10,240 KB
testcase_11 AC 33 ms
10,624 KB
testcase_12 AC 23 ms
10,496 KB
testcase_13 AC 45 ms
12,160 KB
testcase_14 AC 192 ms
11,904 KB
testcase_15 AC 450 ms
12,160 KB
testcase_16 AC 473 ms
15,104 KB
testcase_17 AC 278 ms
11,136 KB
testcase_18 AC 526 ms
11,904 KB
testcase_19 AC 4,243 ms
15,232 KB
testcase_20 AC 1,834 ms
13,568 KB
testcase_21 AC 757 ms
13,184 KB
testcase_22 AC 1,292 ms
12,416 KB
testcase_23 AC 58 ms
14,720 KB
testcase_24 AC 14 ms
8,704 KB
testcase_25 AC 11 ms
8,576 KB
testcase_26 AC 41 ms
10,240 KB
testcase_27 AC 32 ms
10,624 KB
testcase_28 AC 35 ms
11,392 KB
testcase_29 AC 50 ms
12,288 KB
testcase_30 AC 48 ms
11,520 KB
testcase_31 AC 57 ms
11,264 KB
testcase_32 AC 57 ms
12,544 KB
testcase_33 AC 27 ms
10,368 KB
testcase_34 AC 102 ms
14,720 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef long long ll;
typedef pair<ll,ll>P;

vector<P>E[60000];
ll d[60000];
int vid[60000],rev[60000];
int cl[60000],cr[60000];
multiset<P>se[60000];

int node_cnt;

void dfs(int v,int p){
	cl[v]=node_cnt;
	vid[v]=node_cnt++;
	rev[vid[v]]=v;
	for(auto u:E[v]){
		if(u.second==p)continue;
		d[u.second]=d[v]+u.first;
		dfs(u.second,v);
	}
	cr[v]=node_cnt;
}

int main(){
	int n,q;cin>>n>>q;
	assert(1<=n&&n<=50000);
	assert(1<=q&&q<=100000);
	rep(i,n-1){
		int a,b;ll c;scanf("%d%d%lld",&a,&b,&c);a--;b--;
		E[a].push_back(P(c,b));
		E[b].push_back(P(c,a));
	}
	dfs(0,-1);
	rep(i,q){
		int ty,v;ll t,l;scanf("%d%d%lld%lld",&ty,&v,&t,&l);v--;
		if(ty==0){
			se[vid[v]].insert(P(t,l));
		}
		else{
			assert(l==0);
			int cnt=0;
			for(int i=cl[v];i<cr[v];i++){
				int u=rev[i];
				ll D=d[u]-d[v];
				for(auto&p:se[i]){
					if(p.first>t-D)break;
					if(D<=p.second)cnt++;
				}
			}
			printf("%d\n",cnt);
		}
	}
}
0