結果

問題 No.2115 Making Forest Easy
ユーザー kmjpkmjp
提出日時 2022-10-29 00:47:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 1,919 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 212,196 KB
実行使用メモリ 10,476 KB
最終ジャッジ日時 2024-07-06 03:51:07
合計ジャッジ時間 26,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,488 KB
testcase_01 AC 2 ms
7,876 KB
testcase_02 AC 664 ms
8,644 KB
testcase_03 AC 574 ms
8,136 KB
testcase_04 AC 707 ms
8,392 KB
testcase_05 AC 521 ms
8,520 KB
testcase_06 AC 663 ms
8,516 KB
testcase_07 AC 929 ms
8,004 KB
testcase_08 AC 653 ms
8,516 KB
testcase_09 AC 674 ms
8,272 KB
testcase_10 AC 665 ms
10,476 KB
testcase_11 AC 579 ms
7,880 KB
testcase_12 AC 676 ms
7,876 KB
testcase_13 AC 469 ms
7,880 KB
testcase_14 AC 660 ms
7,748 KB
testcase_15 AC 979 ms
8,004 KB
testcase_16 AC 586 ms
8,320 KB
testcase_17 AC 8 ms
9,592 KB
testcase_18 AC 23 ms
8,152 KB
testcase_19 AC 196 ms
8,612 KB
testcase_20 AC 632 ms
8,520 KB
testcase_21 AC 6 ms
8,256 KB
testcase_22 AC 27 ms
7,492 KB
testcase_23 AC 389 ms
8,636 KB
testcase_24 AC 578 ms
8,584 KB
testcase_25 AC 128 ms
7,752 KB
testcase_26 AC 671 ms
8,128 KB
testcase_27 AC 174 ms
7,876 KB
testcase_28 AC 968 ms
8,132 KB
testcase_29 AC 10 ms
7,748 KB
testcase_30 AC 997 ms
8,008 KB
testcase_31 AC 731 ms
8,264 KB
testcase_32 AC 670 ms
8,516 KB
testcase_33 AC 674 ms
8,648 KB
testcase_34 AC 10 ms
7,620 KB
testcase_35 AC 36 ms
7,876 KB
testcase_36 AC 663 ms
9,180 KB
testcase_37 AC 150 ms
8,176 KB
testcase_38 AC 47 ms
7,748 KB
testcase_39 AC 111 ms
9,932 KB
testcase_40 AC 923 ms
8,008 KB
testcase_41 AC 670 ms
7,880 KB
testcase_42 AC 579 ms
8,264 KB
testcase_43 AC 173 ms
8,372 KB
testcase_44 AC 45 ms
7,748 KB
testcase_45 AC 493 ms
8,008 KB
testcase_46 AC 582 ms
8,240 KB
testcase_47 AC 137 ms
7,620 KB
testcase_48 AC 718 ms
8,388 KB
testcase_49 AC 709 ms
8,644 KB
testcase_50 AC 226 ms
7,752 KB
testcase_51 AC 95 ms
9,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
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(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int A[101010];
int D[101010];
int C[101010];
vector<int> E[101010];
const ll mo=998244353;

ll dp1[101010][2];
ll dp2[101010][2];


ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

void dfs(int cur,int pre,int sc) {
	ll a[2]={},b[2]={};
	a[C[cur]>sc]=b[C[cur]>sc]=1;
	int i,j;
	FORR(e,E[cur]) if(e!=pre) {
		dfs(e,cur,sc);
		ll na[2]={},nb[2]={};
		// not connect
		FOR(i,2) {
			na[i]+=a[i]*(dp1[e][0]+dp1[e][1]);
			nb[i]+=b[i]*(dp1[e][0]+dp1[e][1]);
		}
		// connect
		FOR(i,2) FOR(j,2) {
			na[max(i,j)]+=a[i]*dp1[e][j];
			nb[max(i,j)]+=b[i]*dp1[e][j]+a[i]*dp2[e][j];
		}
		
		FOR(i,2) {
			a[i]=na[i]%mo;
			b[i]=nb[i]%mo;
		}
	}
	FOR(i,2) {
		dp1[cur][i]=a[i];
		dp2[cur][i]=b[i];
	}
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	vector<pair<int,int>> V;
	FOR(i,N) {
		cin>>A[i];
		V.push_back({A[i],i});
	}
	sort(ALL(V));
	FOR(i,V.size()) C[V[i].second]=i;
	FOR(i,N-1) {
		cin>>x>>y;
		E[x-1].push_back(y-1);
		E[y-1].push_back(x-1);
	}
	
	ll ret=0;
	FOR(i,N) {
		dfs(i,i,C[i]);
		ret+=A[i]*dp2[i][0]%mo;
	}
	cout<<ret%mo<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0