結果

問題 No.2654 [Cherry 6th Tune] Re: start! (Black Sheep)
ユーザー kmjpkmjp
提出日時 2024-02-23 23:16:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 656 ms / 7,000 ms
コード長 2,468 bytes
コンパイル時間 2,594 ms
コンパイル使用メモリ 211,452 KB
実行使用メモリ 44,012 KB
最終ジャッジ日時 2024-09-29 08:41:40
合計ジャッジ時間 19,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,320 KB
testcase_01 AC 4 ms
8,192 KB
testcase_02 AC 4 ms
8,320 KB
testcase_03 AC 455 ms
20,588 KB
testcase_04 AC 428 ms
19,956 KB
testcase_05 AC 248 ms
15,220 KB
testcase_06 AC 75 ms
10,364 KB
testcase_07 AC 198 ms
13,932 KB
testcase_08 AC 271 ms
15,856 KB
testcase_09 AC 464 ms
20,844 KB
testcase_10 AC 71 ms
10,240 KB
testcase_11 AC 310 ms
17,136 KB
testcase_12 AC 58 ms
9,856 KB
testcase_13 AC 299 ms
16,620 KB
testcase_14 AC 625 ms
24,436 KB
testcase_15 AC 567 ms
23,536 KB
testcase_16 AC 261 ms
15,404 KB
testcase_17 AC 470 ms
21,488 KB
testcase_18 AC 181 ms
13,428 KB
testcase_19 AC 563 ms
24,048 KB
testcase_20 AC 295 ms
16,492 KB
testcase_21 AC 324 ms
17,392 KB
testcase_22 AC 306 ms
17,264 KB
testcase_23 AC 5 ms
8,192 KB
testcase_24 AC 5 ms
8,192 KB
testcase_25 AC 6 ms
8,192 KB
testcase_26 AC 6 ms
8,320 KB
testcase_27 AC 6 ms
8,448 KB
testcase_28 AC 634 ms
25,456 KB
testcase_29 AC 626 ms
25,324 KB
testcase_30 AC 631 ms
25,324 KB
testcase_31 AC 656 ms
25,456 KB
testcase_32 AC 651 ms
25,452 KB
testcase_33 AC 593 ms
43,888 KB
testcase_34 AC 347 ms
25,840 KB
testcase_35 AC 642 ms
25,308 KB
testcase_36 AC 552 ms
44,012 KB
testcase_37 AC 654 ms
25,456 KB
testcase_38 AC 568 ms
43,892 KB
testcase_39 AC 5 ms
8,192 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[202020],P[202020];
vector<int> As;
ll ret[202020];
vector<int> E[202020];
vector<pair<int,int>> V;

template<class V, int ME> class BIT {
public:
	V bit[1<<ME],val[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { val[e++]+=v; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
	void set(int e,V v) { add(e,v-val[e]);}
	int lower_bound(V val) {
		V tv=0; int i,ent=0;
		for(i=ME-1;i>=0;i--) if(tv+bit[ent+(1<<i)-1]<val) tv+=bit[ent+(1<<i)-1],ent+=(1<<i);
		return ent;
	}
};
BIT<ll,20> num,sum;

ll hoge(int rem) {
	num.add(rem,-1);
	sum.add(rem,-V[rem].first);
	
	
	int tnum=num(N+2);
	int L,R;
	if(tnum%2==1) {
		L=R=num.lower_bound(tnum/2+1);
	}
	else {
		L=num.lower_bound(tnum/2);
		R=num.lower_bound(tnum/2+1);
	}
	ll ret=(sum(N+2)-sum(R-1))-(num(N+2)-num(R-1))*V[R].first;
	ret+=num(L)*V[R].first-sum(L);
	
	if(V[rem].first==V[L].first&&V[rem].first==V[R].first) ret++;
	
	num.add(rem,1);
	sum.add(rem,V[rem].first);
	return ret;
}

void dfs(int cur,int pre) {
	num.add(P[cur],1);
	sum.add(P[cur],A[cur]);
	
	int tnum=num(N+2);
	if(tnum<=2) {
		ret[cur]=-1;
	}
	else {
		int L=num.lower_bound(1);
		int R=num.lower_bound(tnum);
		
		if(L==R) {
			ret[cur]=1;
		}
		else {
			ret[cur]=min(hoge(L),hoge(R));
			
		}
	}
	
	FORR(e,E[cur]) if(e!=pre) dfs(e,cur);
	
	num.add(P[cur],-1);
	sum.add(P[cur],-A[cur]);
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	
	FOR(i,N+1) {
		cin>>A[i];
		V.push_back({A[i],i});
	}
	sort(ALL(V));
	FOR(i,N+1) P[V[i].second]=i;
	
	FOR(i,N) {
		cin>>x>>y;
		E[x].push_back(y);
		E[y].push_back(x);
	}
	dfs(0,0);
	FOR(i,N) cout<<ret[i+1]<<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