結果

問題 No.2377 SUM AND XOR on Tree
ユーザー pointNpointN
提出日時 2023-07-12 02:57:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 4,000 ms
コード長 1,718 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 138,996 KB
実行使用メモリ 22,800 KB
最終ジャッジ日時 2024-09-13 15:57:32
合計ジャッジ時間 10,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 367 ms
11,940 KB
testcase_09 AC 363 ms
11,944 KB
testcase_10 AC 377 ms
12,068 KB
testcase_11 AC 347 ms
11,940 KB
testcase_12 AC 339 ms
11,952 KB
testcase_13 AC 347 ms
12,052 KB
testcase_14 AC 323 ms
11,656 KB
testcase_15 AC 331 ms
12,012 KB
testcase_16 AC 334 ms
11,648 KB
testcase_17 AC 366 ms
11,776 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 328 ms
11,940 KB
testcase_24 AC 328 ms
11,940 KB
testcase_25 AC 354 ms
12,064 KB
testcase_26 AC 237 ms
22,768 KB
testcase_27 AC 240 ms
22,768 KB
testcase_28 AC 234 ms
22,800 KB
testcase_29 AC 180 ms
12,224 KB
testcase_30 AC 179 ms
12,224 KB
testcase_31 AC 180 ms
12,348 KB
testcase_32 AC 198 ms
11,960 KB
testcase_33 AC 198 ms
11,828 KB
testcase_34 AC 196 ms
11,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
//#include <atcoder/all>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)(x).size())
#define pb push_back
using ll = long long;
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;}
ll lcm(ll a, ll b) {return a/gcd(a,b)*b;}

const ll mod = 998244353;

void dfs(int n, int p, vector<ll>& A, int s, vector<vector<int>>& G, vector<vector<ll>>& dp){
  rep(i,sz(G[n])){
    int x = G[n][i];
    if(x==p) continue;
    dfs(x,n,A,s,G,dp);
  }
  dp[0][n] = ((A[n]>>s)&1)==0;
  dp[1][n] = 1-dp[0][n];
  rep(i,sz(G[n])){
    int x = G[n][i];
    if(x==p) continue;
    ll t0 = dp[0][n];
    ll t1 = dp[1][n];
    dp[0][n] = (t0 * (dp[0][x] + dp[1][x]) + t1 * (dp[1][x])) % mod;
    dp[1][n] = (t0 * (dp[1][x]) + t1 * (dp[0][x] + dp[1][x])) % mod;
  }
}

int main(){
  int N; cin >> N;
  vector<vector<int>> G(N);
  rep(i,N-1){
    int a,b; cin >> a >> b; a--; b--;
    G[a].pb(b);
    G[b].pb(a);
  }
  vector<ll> A(N);
  rep(i,N) cin >> A[i];
  ll ans = 0;
  rep(s,30){
    vector<vector<ll>> dp(2,vector<ll>(N,0));
    dfs(0,-1,A,s,G,dp);
    ans += dp[1][0] * (1LL<<s) % mod;
    ans %= mod;
  }
  cout << ans % mod << '\n';
  return 0;
};
0