답안 #310639

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
310639 2020-10-07T14:18:27 Z shivensinha4 Mag (COCI16_mag) C++17
120 / 120
613 ms 83780 KB
#include <bits/stdc++.h> 
using namespace std; 
#define for_(i, s, e) for (int i = s; i < (int) e; i++)
#define for__(i, s, e) for (ll i = s; i < e; i++)
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
#define endl '\n'

const int MXN = 1e6;
const ll INF = 1e17;
vi adj[MXN+1];
int chain[MXN+1], val[MXN+1], n;
pair<ll, ll> ans = {INF, 1};

void update(ll nu, ll de) {
	ll g = __gcd(nu, de);
	pair<ll, ll> temp = {nu/g, de/g};
	if (ans.first == INF) ans = temp;
	else if (temp.first*ans.second < ans.first*temp.second) ans = temp;
}


void dfs(int p, int parent) {
	stack<ii> s, ss;
	s.push({p, parent}); ss.push({p, parent});
	while (s.size()) {
		p = s.top().first, parent = s.top().second; s.pop();
		for (int i: adj[p]) if (i != parent) {
			s.push({i, p});
			ss.push({i, p});
		}
	}
	
	while (ss.size()) {
		p = ss.top().first, parent = ss.top().second; ss.pop();
		for (int i: adj[p]) if (i != parent) {
			chain[p] = max(chain[p], chain[i]);
		}
		if (val[p] == 1) chain[p] += 1;
		else chain[p] = 0;
	}
}


void dfs2(int p, int parent, int pval) {
	stack<vi> s;
	s.push({p, parent, pval});
	while (s.size()) {
		p = s.top()[0], parent = s.top()[1], pval = s.top()[2]; s.pop();
		vi all, mx(2);
		all.push_back(pval);
		for (int i: adj[p]) if (i != parent) all.push_back(chain[i]);
		sort(all.begin(), all.end(), greater<int>());
		for_(i, 0, min((int) all.size(), 2)) mx[i] = all[i];
		
		update(val[p], mx[0]+mx[1]+1);
		
		for (auto i: adj[p]) if (i != parent) s.push({i, p, val[p] == 1 ? max(pval, mx[0] == chain[i] ? mx[1] : mx[0])+1 : 0});

	}
}


int main() {
	#ifdef shiven
	freopen("test.in", "r", stdin);
	#endif
	
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	
	cin >> n;
	for_(i, 0, n-1) {
		int a, b; cin >> a >> b;
		a -= 1; b -= 1;
		adj[a].push_back(b); adj[b].push_back(a);
	}
	for_(i, 0, n) cin >> val[i];
	
	dfs(0, 0);
	dfs2(0, 0, 0);
	cout << ans.first << "/" << ans.second << endl;

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 19 ms 23936 KB Output is correct
2 Correct 18 ms 23808 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 23936 KB Output is correct
2 Correct 17 ms 23936 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 506 ms 59052 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 23808 KB Output is correct
2 Correct 607 ms 67744 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 610 ms 66584 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 598 ms 67484 KB Output is correct
2 Correct 446 ms 56056 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 607 ms 83780 KB Output is correct
2 Correct 118 ms 29048 KB Output is correct
3 Correct 612 ms 68104 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 119 ms 29176 KB Output is correct
2 Correct 607 ms 67516 KB Output is correct
3 Correct 528 ms 46840 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 574 ms 65932 KB Output is correct
2 Correct 613 ms 66612 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 610 ms 67848 KB Output is correct
2 Correct 522 ms 46840 KB Output is correct