結果

問題 No.2598 Kadomatsu on Tree
ユーザー umezoumezo
提出日時 2024-01-03 00:42:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 206,212 KB
実行使用メモリ 49,620 KB
最終ジャッジ日時 2024-09-27 18:22:49
合計ジャッジ時間 14,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,192 KB
testcase_01 AC 5 ms
8,192 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 5 ms
8,064 KB
testcase_04 AC 5 ms
8,192 KB
testcase_05 AC 5 ms
8,320 KB
testcase_06 AC 5 ms
8,064 KB
testcase_07 AC 5 ms
8,192 KB
testcase_08 AC 5 ms
7,936 KB
testcase_09 AC 5 ms
8,192 KB
testcase_10 AC 5 ms
8,064 KB
testcase_11 AC 5 ms
8,192 KB
testcase_12 AC 4 ms
8,064 KB
testcase_13 AC 7 ms
8,320 KB
testcase_14 AC 8 ms
8,320 KB
testcase_15 AC 6 ms
8,448 KB
testcase_16 AC 8 ms
8,320 KB
testcase_17 AC 6 ms
8,192 KB
testcase_18 AC 8 ms
8,320 KB
testcase_19 AC 8 ms
8,448 KB
testcase_20 AC 7 ms
8,192 KB
testcase_21 AC 7 ms
8,192 KB
testcase_22 AC 8 ms
8,448 KB
testcase_23 AC 254 ms
18,816 KB
testcase_24 AC 256 ms
19,072 KB
testcase_25 AC 250 ms
19,032 KB
testcase_26 AC 246 ms
18,944 KB
testcase_27 AC 249 ms
18,816 KB
testcase_28 AC 253 ms
19,072 KB
testcase_29 AC 249 ms
19,060 KB
testcase_30 AC 250 ms
18,944 KB
testcase_31 AC 259 ms
19,064 KB
testcase_32 AC 250 ms
18,816 KB
testcase_33 AC 256 ms
19,072 KB
testcase_34 AC 243 ms
18,816 KB
testcase_35 AC 261 ms
19,152 KB
testcase_36 AC 259 ms
19,120 KB
testcase_37 AC 258 ms
19,112 KB
testcase_38 AC 255 ms
19,024 KB
testcase_39 AC 261 ms
19,140 KB
testcase_40 AC 259 ms
19,024 KB
testcase_41 AC 262 ms
19,152 KB
testcase_42 AC 268 ms
19,156 KB
testcase_43 AC 261 ms
19,224 KB
testcase_44 AC 267 ms
19,152 KB
testcase_45 AC 256 ms
19,148 KB
testcase_46 AC 263 ms
19,228 KB
testcase_47 AC 254 ms
19,152 KB
testcase_48 AC 321 ms
49,280 KB
testcase_49 AC 20 ms
14,496 KB
testcase_50 AC 198 ms
35,248 KB
testcase_51 AC 46 ms
20,936 KB
testcase_52 AC 84 ms
20,596 KB
testcase_53 AC 62 ms
15,860 KB
testcase_54 AC 52 ms
15,024 KB
testcase_55 AC 21 ms
13,276 KB
testcase_56 AC 102 ms
18,348 KB
testcase_57 AC 33 ms
13,812 KB
testcase_58 AC 242 ms
18,960 KB
testcase_59 AC 243 ms
19,168 KB
testcase_60 AC 311 ms
46,452 KB
testcase_61 AC 322 ms
49,620 KB
testcase_62 AC 303 ms
43,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MOD=998244353;
const ll c2=499122177;

const int MAX=200200;
vector<int> G[MAX];
ll dp[MAX],ans[MAX],A[MAX];

void dfs1(int v,int p){
  dp[v]=1;
  for(auto nv:G[v]){
    if(nv==p) continue;
    dfs1(nv,v);
    dp[v]+=dp[nv];
  }
}

void dfs2(int v,int p){
  ll ls=0,ls2=0,rs=0,rs2=0;
  for(auto nv:G[v]){
    if(A[nv]<A[v]){
      ls=(ls+dp[nv])%MOD;
      ls2=(ls2+dp[nv]*dp[nv]%MOD)%MOD;
    }
    else if(A[nv]>A[v]){
      rs=(rs+dp[nv])%MOD;
      rs2=(rs2+dp[nv]*dp[nv]%MOD)%MOD;
    }
    ans[v]=((ls*ls%MOD-ls2+MOD)%MOD*c2%MOD+(rs*rs%MOD-rs2+MOD)%MOD*c2%MOD)%MOD;
  }
  
  int N=G[v].size();
  vector<ll> L(N),R(N);
  rep(i,N) L[i]=R[i]=dp[G[v][i]];
  for(int i=1;i<N;i++) L[i]=(L[i]+L[i-1])%MOD;
  for(int i=N-2;i>=0;i--) R[i]=(R[i]+R[i+1])%MOD;
  
  rep(i,N){
    if(G[v][i]==p) continue;
    dp[v]=1;
    if(i) dp[v]=(dp[v]+L[i-1])%MOD;
    if(i<N-1) dp[v]=(dp[v]+R[i+1])%MOD;
    dfs2(G[v][i],v);
  }
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  rep(i,n-1){
    int u,v;
    cin>>u>>v;
    u--,v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  rep(i,n) cin>>A[i];
  
  dfs1(0,-1);
  dfs2(0,-1);
  
  ll sum=0;
  rep(i,n) sum=(sum+ans[i])%MOD;
  cout<<sum<<endl;
  
  return 0;
}
0