結果
| 問題 | No.623 fudan no modulus to tigau |
| コンテスト | |
| ユーザー |
lowr
|
| 提出日時 | 2019-09-26 18:43:33 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 766 bytes |
| 記録 | |
| コンパイル時間 | 2,034 ms |
| コンパイル使用メモリ | 213,116 KB |
| 実行使用メモリ | 9,600 KB |
| 最終ジャッジ日時 | 2026-06-07 22:29:16 |
| 合計ジャッジ時間 | 6,310 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 2 |
| other | AC * 6 TLE * 1 -- * 5 |
ソースコード
#include <bits/stdc++.h>
using i64 = long long;
std::vector<i64> a, b, t, pre;
constexpr i64 mod = 998244353;
i64 rec(int i, i64 x) {
if (i == 0) return 1;
if (i == 1) return x;
if (pre[i] >= 0) return pre[i];
if (t[i] == 1) return (rec(a[i], x) + rec(b[i], x)) % mod;
if (t[i] == 2) return a[i] * rec(b[i], x) % mod;
return rec(a[i], x) * rec(b[i], x) % mod;
}
int main() {
int n;
std::cin >> n;
a.resize(n + 1); b.resize(n + 1); t.resize(n + 1); pre.resize(n + 1);
for (int i = 2; i <= n; i++) std::cin >> t[i] >> a[i] >> b[i];
int q;
std::cin >> q;
while (q--) {
for (auto &e : pre) e = -1;
i64 x;
std::cin >> x;
std::cout << rec(n, x) << std::endl;
}
return 0;
}
lowr