Submission #424105

# Submission time Handle Problem Language Result Execution time Memory
424105 2021-06-11T16:42:06 Z amunduzbaev Unique Cities (JOI19_ho_t5) C++14
0 / 100
359 ms 16692 KB
/* made by amunduzbaev */
 
//~ #include <ext/pb_ds/assoc_container.hpp>
//~ #include <ext/pb_ds/tree_policy.hpp>
#include "bits/stdc++.h"
 
using namespace std;
//~ using namespace __gnu_pbds;
 
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define ub upper_bound
#define lb lower_bound
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(),x.rend()
#define NeedForSpeed ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define vv vector
#define mem(arr, v) memset(arr, v, sizeof arr)
#define int long long
#define degub(x) cout<<#x<<" : "<<x<<"\n"
#define GG cout<<"here\n";
 
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii; 
typedef vector<int> vii;
typedef vector<pii> vpii;
template<class T> bool umin(T& a, const T& b) { return a > b ? a = b, true : false; }
template<class T> bool umax(T& a, const T& b) { return a < b ? a = b, true : false; }
template<int sz> using tut = array<int, sz>;
void usaco(string s) { freopen((s+".in").c_str(),"r",stdin);  
	freopen((s+".out").c_str(),"w",stdout); NeedForSpeed }
//~ template<class T> using oset = tree<T, 
//~ null_type, less_equal<T>, rb_tree_tag, 
//~ tree_order_statistics_node_update> ordered_set;
 
const int N = 2e5+5;
const int mod = 1e9+7;
const ll inf = 1e18;
const ld Pi = acos(-1);
 
#define MULTI 0
int n, m, k, s, t, q, ans, res[N], a[N];
int d1, d2, d[N], mx[N];
vii edges[N];
 
void dfs(int u, int p = -1){ mx[u] = 0;
	for(auto x : edges[u]){
		if(x == p) continue;
		d[x] = d[u] + 1, dfs(x, u);
		umax(mx[u], mx[x] + 1);
	}
}
 
vpii ss;
map<int, int> mm;
 
void dfs2(int u, int d = 0, int p = -1){
	int mxx = 0, mx2 = 0;
	for(auto x : edges[u]){
		if(x == p) continue;
		if(mx[mxx] < mx[x] + 1) mx2 = mxx, mxx = x;
		else if(mx[mx2] < mx[x] + 1) mx2 = x;
	}
	
	if(mx2){
		int del = d - (mx[mx2] + 1);
		while(!ss.empty() && ss.back().ff >= del){
			mm[a[ss.back().ss]]--; 
			if(!mm[a[ss.back().ss]]) mm.erase(a[ss.back().ss]);
			ss.pop_back();
		}
	} 
	
	if(mxx){
		ss.pb({d, u}), mm[a[u]]++;
		dfs2(mxx, d+1, u);
		int del = d - (mx[mxx] + 1);
		while(!ss.empty() && ss.back().ff >= del){
			mm[a[ss.back().ss]]--; 
			if(!mm[a[ss.back().ss]]) mm.erase(a[ss.back().ss]);
			ss.pop_back();
		}
	} ss.pb({d, u}), mm[a[u]]++;
 
	
	for(auto x : edges[u]){
		if(x == p || x == mxx) continue;
		dfs2(x, d+1, u);
	} 
	
	while(!ss.empty() && ss.back().ff >= d){
		mm[a[ss.back().ss]]--; 
		if(!mm[a[ss.back().ss]]) mm.erase(a[ss.back().ss]);
		ss.pop_back();
	}
	umax(res[u], sz(mm));
}
 
void solve(int t_case){
	cin>>n>>m;
	for(int i=1;i<n;i++){
		int a, b; cin>>a>>b;
		edges[a].pb(b), edges[b].pb(a);
	} for(int i=1;i<=n;i++) cin>>a[i];
	
	dfs(1); d1 = 1;
	for(int i=1;i<=n;i++) if(d[d1] < d[i]) d1 = i;
	d[d1] = 0, dfs(d1), d2 = d1;
	for(int i=1;i<=n;i++) if(d[d2] < d[i]) d2 = i;
	//~ cout<<"\n"<<d1<<"\n";
	dfs2(d1);
	
	//~ cout<<"\n"<<d2<<"\n";
	dfs(d2), dfs2(d2);
	
	//~ cout<<"\n";
	for(int i=1;i<=n;i++) cout<<res[i]<<"\n";
}
 
signed main(){
	NeedForSpeed
	if(MULTI){
		int t; cin>>t;
		for(int t_case = 1; t_case <= t; t_case++) solve(t_case);
	} else solve(1);
	return 0;
}

Compilation message

joi2019_ho_t5.cpp: In function 'void usaco(std::string)':
joi2019_ho_t5.cpp:34:31: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   34 | void usaco(string s) { freopen((s+".in").c_str(),"r",stdin);
      |                        ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
joi2019_ho_t5.cpp:35:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   35 |  freopen((s+".out").c_str(),"w",stdout); NeedForSpeed }
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 4 ms 4996 KB Output is correct
2 Incorrect 5 ms 5152 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 208 ms 14608 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 359 ms 16692 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 4996 KB Output is correct
2 Incorrect 5 ms 5152 KB Output isn't correct
3 Halted 0 ms 0 KB -