結果

問題 No.2949 Product on Tree
ユーザー ぴぃいいいいぴぃいいいい
提出日時 2024-10-26 03:43:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 2,717 bytes
コンパイル時間 7,443 ms
コンパイル使用メモリ 333,192 KB
実行使用メモリ 32,964 KB
最終ジャッジ日時 2024-10-26 03:43:45
合計ジャッジ時間 21,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 237 ms
16,396 KB
testcase_04 AC 216 ms
16,036 KB
testcase_05 AC 222 ms
16,496 KB
testcase_06 AC 227 ms
16,400 KB
testcase_07 AC 228 ms
16,132 KB
testcase_08 AC 229 ms
16,712 KB
testcase_09 AC 225 ms
16,964 KB
testcase_10 AC 229 ms
17,488 KB
testcase_11 AC 248 ms
18,236 KB
testcase_12 AC 233 ms
20,956 KB
testcase_13 AC 239 ms
21,448 KB
testcase_14 AC 249 ms
23,440 KB
testcase_15 AC 257 ms
25,936 KB
testcase_16 AC 240 ms
23,912 KB
testcase_17 AC 256 ms
24,684 KB
testcase_18 AC 233 ms
24,452 KB
testcase_19 AC 234 ms
26,884 KB
testcase_20 AC 258 ms
26,384 KB
testcase_21 AC 239 ms
26,632 KB
testcase_22 AC 238 ms
27,864 KB
testcase_23 AC 247 ms
16,592 KB
testcase_24 AC 238 ms
16,616 KB
testcase_25 AC 235 ms
16,652 KB
testcase_26 AC 248 ms
16,644 KB
testcase_27 AC 229 ms
16,712 KB
testcase_28 AC 232 ms
16,844 KB
testcase_29 AC 261 ms
17,248 KB
testcase_30 AC 230 ms
17,756 KB
testcase_31 AC 236 ms
18,992 KB
testcase_32 AC 265 ms
19,464 KB
testcase_33 AC 245 ms
23,436 KB
testcase_34 AC 256 ms
28,424 KB
testcase_35 AC 268 ms
25,108 KB
testcase_36 AC 255 ms
30,172 KB
testcase_37 AC 276 ms
30,756 KB
testcase_38 AC 249 ms
27,248 KB
testcase_39 AC 257 ms
27,824 KB
testcase_40 AC 287 ms
32,384 KB
testcase_41 AC 256 ms
29,392 KB
testcase_42 AC 256 ms
32,964 KB
testcase_43 AC 81 ms
13,860 KB
testcase_44 AC 81 ms
13,944 KB
testcase_45 AC 103 ms
16,960 KB
testcase_46 AC 92 ms
15,552 KB
testcase_47 AC 69 ms
12,168 KB
testcase_48 AC 96 ms
15,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace atcoder;
using namespace __gnu_pbds;
using mint = modint998244353;
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define print(var) std::cout<<#var<<"="<<(var)<<std::endl
#define all(a) (a).begin(), (a).end()
#define vi vector<int>
#define vvi vector<vi>
#define vvvi vector<vvi>
#define ll long long
#define vll vector<ll>
#define vvll vector<vll>
#define vvvll vector<vvll>
#define vvvvll vector<vvvll>
#define vmi vector<mint>
#define vvmi vector<vmi>
#define vvvmi vector<vvmi>
#define vvvvmi vector<vvvmi>
#define vvvvvmi vector<vvvvmi>
#define vs vector<string>
#define pii pair<int,int>
#define vpii vector<pii>
#define vvpii vector<vpii>
#define bit(x,i)(((x)>>(i))&1)
#define inf (1<<30)
#define INF (1ll<<60)
#define X first
#define Y second
template<typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); }
template<class T, class F> T nibutan(T ok, T ng, const F &f){while(abs(ok-ng)>1){T mid = (ok+ng)/2;(f(mid)?ok:ng) = mid;}return ok;}
template<class T> vector<T> digit(T x){vector<T> res; while(x>0){res.push_back(x%10); x/=10;} return res;}
ostream& operator<<(ostream& os, const mint& x){ os << x.val(); return os; }
template<class T> istream &operator>>(istream &is, vector<T> &vec){ for(auto &v:vec) is >> v; return is; }
template<class T> void coutvector(vector<T> x){ for(int i=0;i<(int)x.size();i++){if(i>0) cout<<" ";cout<<x[i];}cout<<endl;}
using Set = tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>;
template<class S, class T> using Unordered_Map = gp_hash_table<S,T>;

#ifdef LOCAL
#include<dump.hpp>
CPP_DUMP_DEFINE_EXPORT_OBJECT(mint,val());
#else
#define cpp_dump
#endif

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin>>n;
    vll a(n); cin>>a;
    vvi g(n);
    for(int i=0;i<n-1;i++){
        int u,v; cin>>u>>v,u--,v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    mint ans = 0;
    vmi dp(n,0);
    auto dfs = [&](auto dfs, int tp, int pa)->void{
        mint tmp = 0;
        mint sum = 0;
        for(auto np:g[tp])if(np!=pa){
            dfs(dfs,np,tp);
            dp[tp] += dp[np]+a[np];
            tmp += (dp[np]+a[np])*(dp[np]+a[np]);
            sum += dp[np]+a[np];
        }
        tmp = (sum*sum-tmp)/2;
        tmp *= a[tp];
        ans += tmp;
        dp[tp]*=a[tp];
        ans += dp[tp];
        return;
    };
    dfs(dfs,0,-1);
    cpp_dump(dp);
    cout << ans.val() << endl;
}
0