結果

問題 No.623 fudan no modulus to tigau
ユーザー PachicobuePachicobue
提出日時 2017-12-23 00:53:03
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 199,276 KB
最終ジャッジ日時 2025-01-05 06:14:46
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) cerr << #x << " = " << x << endl

using namespace std;
using ll = long long;
constexpr ll MOD = 998244353;

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<ll> f(N + 1);
    using T = tuple<int, int, int>;
    vector<T> query(N + 1);
    for (int i = 2; i <= N; i++) {
        int t, a, b;
        cin >> t >> a >> b;
        query[i] = make_tuple(t, a, b);
    }
    f[0] = 1;
    int Q;
    cin >> Q;
    for (int q = 0; q < Q; q++) {
        ll x;
        cin >> x;
        f[1] = x;
        for (int i = 2; i <= N; i++) {
            const int t = get<0>(query[i]);
            const int a = get<1>(query[i]);
            const int b = get<2>(query[i]);
            if (t == 1) {
                f[i] = (f[a] + f[b]) % MOD;
            } else if (t == 2) {
                f[i] = (a * f[b]) % MOD;
            } else {
                f[i] = (f[a] * f[b]) % MOD;
            }
        }
        cout << f[N] << endl;
    }
    return 0;
}
0