結果

問題 No.1637 Easy Tree Query
ユーザー kwm_tkwm_t
提出日時 2021-08-06 21:27:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,375 bytes
コンパイル時間 1,679 ms
コンパイル使用メモリ 168,660 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-09-17 03:36:41
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,064 KB
testcase_01 AC 5 ms
8,064 KB
testcase_02 AC 61 ms
11,904 KB
testcase_03 AC 4 ms
8,192 KB
testcase_04 AC 25 ms
10,112 KB
testcase_05 AC 47 ms
9,484 KB
testcase_06 AC 32 ms
9,216 KB
testcase_07 AC 16 ms
8,320 KB
testcase_08 AC 22 ms
9,616 KB
testcase_09 AC 49 ms
11,264 KB
testcase_10 AC 24 ms
9,088 KB
testcase_11 AC 61 ms
11,392 KB
testcase_12 AC 54 ms
10,752 KB
testcase_13 AC 18 ms
8,960 KB
testcase_14 AC 42 ms
11,256 KB
testcase_15 AC 58 ms
11,520 KB
testcase_16 AC 59 ms
11,904 KB
testcase_17 AC 18 ms
9,216 KB
testcase_18 AC 43 ms
9,600 KB
testcase_19 AC 44 ms
9,856 KB
testcase_20 AC 55 ms
10,752 KB
testcase_21 AC 36 ms
10,240 KB
testcase_22 AC 66 ms
12,032 KB
testcase_23 AC 20 ms
9,216 KB
testcase_24 AC 32 ms
10,240 KB
testcase_25 AC 44 ms
9,472 KB
testcase_26 AC 58 ms
10,752 KB
testcase_27 AC 69 ms
11,904 KB
testcase_28 AC 36 ms
9,344 KB
testcase_29 AC 48 ms
10,508 KB
testcase_30 AC 28 ms
10,368 KB
testcase_31 AC 29 ms
8,064 KB
testcase_32 AC 27 ms
9,600 KB
testcase_33 AC 39 ms
8,960 KB
testcase_34 AC 41 ms
19,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<int>to[200005];
long long ch[100005];
void dfs(int v, int d = 0, int p = -1) {
	ch[v] = 1;
	for (int e : to[v]) {
		if (p == e) continue;
		dfs(e, d + 1, v);
		ch[v] += ch[e];
	}
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, q; cin >> n >> q;
	rep(i, n - 1) {
		int a, b; cin >> a >> b; a--; b--;
		to[a].push_back(b);
		to[b].push_back(a);
	}
	dfs(0);
	long long ans = 0;
	while (q--) {
		int p, x; cin >> p >> x; p--;
		ans += ch[p] * x;
		cout << ans << endl;
	}
	return 0;
}
0