結果

問題 No.1637 Easy Tree Query
ユーザー inksamuraiinksamurai
提出日時 2021-08-07 16:29:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 1,073 ms
コンパイル使用メモリ 110,232 KB
実行使用メモリ 12,964 KB
最終ジャッジ日時 2024-09-18 19:33:08
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 59 ms
9,088 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 25 ms
6,272 KB
testcase_05 AC 43 ms
5,504 KB
testcase_06 AC 29 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 22 ms
5,632 KB
testcase_09 AC 50 ms
7,680 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 64 ms
8,064 KB
testcase_12 AC 55 ms
6,948 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 43 ms
7,680 KB
testcase_15 AC 61 ms
8,320 KB
testcase_16 AC 57 ms
8,916 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 41 ms
5,376 KB
testcase_19 AC 43 ms
5,888 KB
testcase_20 AC 57 ms
6,940 KB
testcase_21 AC 35 ms
6,272 KB
testcase_22 AC 76 ms
8,960 KB
testcase_23 AC 19 ms
5,376 KB
testcase_24 AC 34 ms
6,400 KB
testcase_25 AC 42 ms
5,376 KB
testcase_26 AC 57 ms
7,296 KB
testcase_27 AC 79 ms
8,704 KB
testcase_28 AC 33 ms
5,376 KB
testcase_29 AC 48 ms
6,784 KB
testcase_30 AC 29 ms
6,784 KB
testcase_31 AC 26 ms
5,376 KB
testcase_32 AC 27 ms
5,376 KB
testcase_33 AC 38 ms
5,376 KB
testcase_34 AC 35 ms
12,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <cmath>
#include <deque>
#include <algorithm>
#include <iterator>
#include <list>
#include <tuple>
#include <map>
#include <unordered_map>
#include <queue>
#include <set>
#include <unordered_set>
#include <stack>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <functional>
#include <numeric>
#include <iomanip>
#include <stdio.h>
#include <assert.h>
#include <cstring>
//eolibraries
#define lnf 3999999999999999999
#define inf 999999999
#define fi first
#define se second
#define pb push_back
#define ll long long
#define ld long double
#define all(c) (c).begin(),(c).end()
#define sz(c) (int)(c).size()
#define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end())
#define pii pair <int,int>
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define drep(i,n) for(int i = n-1 ; i >= 0 ; i--)
#define crep(i,x,n) for(int i = x ; i < n ; i++)
#define vi vector <int>
#define vec(...) vector<__VA_ARGS__>
#define _3fFlcJq ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
//eodefine
using namespace std;
const int mxn=12000;
int main(){
_3fFlcJq;
int n,q;
cin>>n>>q;
vec(vi) adj(n,vi());
rep(i,n-1){
int u,v;
cin>>u>>v;
u--,v--;
adj[u].pb(v);
adj[v].pb(u);
}
vi dp(n,0);
auto dfs=[&](auto self,int v,int par)->void{
dp[v]=1;
for(auto u : adj[v]){
if(u==par) continue;
self(self,u,v);
dp[v]+=dp[u];
}
};
dfs(dfs,0,-1);
ll ans=0;
rep(i,q){
ll v,cost;
cin>>v>>cost;
v--;
ans+=(ll)dp[v]*cost;
cout<<ans<<"\n";
}
//
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0