結果
問題 | No.2360 Path to Integer |
ユーザー | pointN |
提出日時 | 2023-06-23 23:38:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 190 ms / 2,500 ms |
コード長 | 2,333 bytes |
コンパイル時間 | 1,709 ms |
コンパイル使用メモリ | 144,064 KB |
実行使用メモリ | 30,208 KB |
最終ジャッジ日時 | 2024-07-01 03:26:21 |
合計ジャッジ時間 | 4,064 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
14,976 KB |
testcase_01 | AC | 13 ms
15,020 KB |
testcase_02 | AC | 14 ms
14,976 KB |
testcase_03 | AC | 13 ms
14,976 KB |
testcase_04 | AC | 14 ms
14,976 KB |
testcase_05 | AC | 13 ms
14,976 KB |
testcase_06 | AC | 13 ms
15,080 KB |
testcase_07 | AC | 14 ms
15,024 KB |
testcase_08 | AC | 26 ms
15,872 KB |
testcase_09 | AC | 190 ms
24,924 KB |
testcase_10 | AC | 139 ms
25,692 KB |
testcase_11 | AC | 145 ms
25,568 KB |
testcase_12 | AC | 138 ms
24,960 KB |
testcase_13 | AC | 181 ms
24,832 KB |
testcase_14 | AC | 178 ms
29,184 KB |
testcase_15 | AC | 161 ms
24,928 KB |
testcase_16 | AC | 155 ms
30,208 KB |
ソースコード
#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; vector<vector<int>> G; vector<ll> dp1; vector<ll> A; vector<ll> len; vector<ll> child; vector<ll> p10(1500000); ll dfs_c(int n, int p){ int ans = 1; rep(i,sz(G[n])){ int x = G[n][i]; if(x==p) continue; ans += dfs_c(x,n); } child[n] = ans; return ans; } ll dfs(int n, int p){ ll ans = 0; rep(i,sz(G[n])){ int x = G[n][i]; if(x==p) continue; ans += dfs(x,n); ans %= mod; } ans *= p10[len[n]]; ans %= mod; ans += child[n] * A[n] % mod; ans %= mod; dp1[n] = ans; return ans; } int main(){ int N; cin >> N; A.resize(N); rep(i,N) cin >> A[i]; len.resize(N); rep(i,N){ len[i] = (ll)sz(to_string(A[i])); } rep(i,N) A[i] %= mod; p10[0] = 1; rep(i,1500000-1){ p10[i+1] = p10[i] * 10 % mod; } G.resize(N); rep(i,N-1){ int a,b; cin >> a >> b; a--; b--; G[a].pb(b); G[b].pb(a); } dp1.assign(N,-1); child.assign(N,-1); dfs_c(0,-1); dfs(0,-1); vector<int> d(N,-1); vector<ll> dp2(N,-1); queue<int> q; q.push(0); d[0] = 0; dp2[0] = dp1[0]; while(!q.empty()){ int n = q.front(); q.pop(); rep(i,sz(G[n])){ int x=G[n][i]; if(d[x]>=0) continue; q.push(x); d[x] = d[n]+1; dp2[x] = dp1[x]; dp2[x] += (dp2[n] - (dp1[x]*p10[len[n]]%mod+child[x]*A[n]%mod)%mod + mod) %mod * (p10[len[x]]) % mod; dp2[x] += A[x]*(child[0]-child[x]) % mod; dp2[x] %= mod; } } ll ans = 0; rep(i,N) ans += dp2[i]; cout << ans % mod << endl; return 0; };