結果

問題 No.2598 Kadomatsu on Tree
ユーザー momoharamomohara
提出日時 2024-08-11 17:16:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 2,953 bytes
コンパイル時間 5,129 ms
コンパイル使用メモリ 313,736 KB
実行使用メモリ 48,336 KB
最終ジャッジ日時 2024-08-11 17:16:59
合計ジャッジ時間 15,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 5 ms
6,944 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 5 ms
6,944 KB
testcase_23 AC 147 ms
19,208 KB
testcase_24 AC 128 ms
19,556 KB
testcase_25 AC 150 ms
19,468 KB
testcase_26 AC 128 ms
19,096 KB
testcase_27 AC 129 ms
19,304 KB
testcase_28 AC 132 ms
19,416 KB
testcase_29 AC 145 ms
19,432 KB
testcase_30 AC 122 ms
19,216 KB
testcase_31 AC 134 ms
19,404 KB
testcase_32 AC 191 ms
19,284 KB
testcase_33 AC 164 ms
19,536 KB
testcase_34 AC 144 ms
18,940 KB
testcase_35 AC 163 ms
19,672 KB
testcase_36 AC 147 ms
19,612 KB
testcase_37 AC 130 ms
19,576 KB
testcase_38 AC 132 ms
19,648 KB
testcase_39 AC 143 ms
19,748 KB
testcase_40 AC 135 ms
19,736 KB
testcase_41 AC 144 ms
19,744 KB
testcase_42 AC 139 ms
19,648 KB
testcase_43 AC 153 ms
19,704 KB
testcase_44 AC 131 ms
19,680 KB
testcase_45 AC 135 ms
19,652 KB
testcase_46 AC 147 ms
19,708 KB
testcase_47 AC 149 ms
19,668 KB
testcase_48 AC 168 ms
47,432 KB
testcase_49 AC 14 ms
7,168 KB
testcase_50 AC 96 ms
30,756 KB
testcase_51 AC 27 ms
13,312 KB
testcase_52 AC 41 ms
14,592 KB
testcase_53 AC 41 ms
10,888 KB
testcase_54 AC 33 ms
9,668 KB
testcase_55 AC 14 ms
6,940 KB
testcase_56 AC 66 ms
14,808 KB
testcase_57 AC 22 ms
7,884 KB
testcase_58 AC 119 ms
19,252 KB
testcase_59 AC 126 ms
19,360 KB
testcase_60 AC 153 ms
44,936 KB
testcase_61 AC 185 ms
48,336 KB
testcase_62 AC 171 ms
42,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>

using namespace std;
using namespace atcoder;

#ifdef DEBUG
#include "debug/all.hpp"
#else
#define debug(...) 42
#endif

using ll = long long;
using ull = unsigned long long;
using ld = long double;
using P = pair<ll, ll>;
using tp = tuple<ll, ll, ll>;

template <class T>
using vec = vector<T>;
template <class T>
using vvec = vector<vec<T>>;

#define all(hoge) (hoge).begin(), (hoge).end()
#define en '\n'
#define rep(i, m, n) for(ll i = (ll)(m); i < (ll)(n); ++i)
#define rep2(i, m, n) for(ll i = (ll)(n)-1; i >= (ll)(m); --i)
#define REP(i, n) rep(i, 0, n)
#define REP2(i, n) rep2(i, 0, n)

constexpr long long INF = 1LL << 60;
constexpr int INF_INT = 1 << 30;
// constexpr long long MOD = (ll)1e9 + 7;
constexpr long long MOD = 998244353LL;
static const ld pi = 3.141592653589793L;

template <class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

struct Edge {
    int to, rev;
    ll cap;
    Edge(int _to, int _rev, ll _cap) : to(_to), rev(_rev), cap(_cap) {}
};

typedef vector<Edge> Edges;
typedef vector<Edges> Graph;

void add_edge(Graph &G, int from, int to, ll cap, bool revFlag, ll revCap) {
    G[from].push_back(Edge(to, (int)G[to].size(), cap));
    if(revFlag)
        G[to].push_back(Edge(from, (int)G[from].size() - 1, revCap));
}

void solve() {
    int n;
    cin >> n;
    Graph g(n);
    REP(i, n - 1) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        add_edge(g, u, v, 1, true, 1);
    }
    vec<ll> a(n);
    REP(i, n) { cin >> a[i]; }

    using mint = modint998244353;
    mint ans = 0;

    auto calc = [&](vec<ll> &vs) -> mint {
        mint ret = 0;
        mint sum = 0;
        for(auto v : vs) {
            ret += sum * v;
            sum += v;
        }
        return ret;
    };

    auto dfs = [&](auto &&self, int v, int p) -> ll {
        ll sum = 1;
        vec<ll> big, small;
        for(auto e : g[v]) {
            if(e.to == p)
                continue;
            ll nxt = self(self, e.to, v);
            if(a[v] < a[e.to])
                big.push_back(nxt);
            else if(a[v] > a[e.to])
                small.push_back(nxt);
            sum += nxt;
        }
        if(p != -1) {
            if(a[v] < a[p]) {
                big.push_back(n - sum);
            } else if(a[v] > a[p]) {
                small.push_back(n - sum);
            }
        }
        ans += calc(big);
        ans += calc(small);
        return sum;
    };
    dfs(dfs, 0, -1);

    cout << ans.val() << en;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    // cout << fixed << setprecision(10);

    // ll t;
    // cin >> t;
    // REP(i, t - 1) {
    //     solve();
    // }

    solve();

    return 0;
}
0