답안 #540128

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
540128 2022-03-19T10:05:30 Z hhhhaura Pastiri (COI20_pastiri) C++14
0 / 100
1000 ms 108756 KB
#define wiwihorz
#include <bits/stdc++.h>
#define rep(i, a, b) for(int i = a; i <= b; i ++)
#define rrep(i, a, b) for(int i = b; i >= a; i--)
#define ceil(a, b) ((a + b - 1) / (b))
#define all(x) x.begin(), x.end()
#define int long long int 
#define lld long double
#define pii pair<int, int>
#define random mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count())
#define INF 1000000000000000000
#define MOD 1000000007
#define eps (1e-9)
using namespace std;
#ifdef wiwihorz
#define print(a...)cerr<<"Line "<<__LINE__<<":",kout("["+string(#a)+"] = ", a)
void vprint(auto L,auto R){while(L<R)cerr<<*L<<" \n"[next(L)==R], ++L;}
void kout(){cerr<< endl;}
template<class T1,class ... T2>void kout(T1 a,T2 ... e){cerr<<a<<" ",kout(e...);}
#else
#define print(...) 0
#define vprint(...) 0
#endif
namespace solver {
	int n;
	vector<vector<int>> mp, mp1;
	vector<int> dep, dis, a, v, vis, par;
	void init_(int _n) {
		n = _n;
		mp.assign(n + 1, vector<int>());
		mp1.assign(n + 1, vector<int>());
		dep.assign(n + 1, 0);
		dis.assign(n + 1, INF);
		vis.assign(n + 1, 0);
		par.assign(n + 1, 0);
		a.assign(n + 1, 0);
		v.assign(n, 0);
		iota(all(v), 1);
	}
	void dfs(int x, int p, int d) {
		par[x] = p, dep[x] = d;
		for(auto i : mp[x]) if(i != p) dfs(i, x, d + 1);
	}
	void dfs1(int x) {
		vis[x] = 1;
		for(auto i : mp1[x]) 
			if(!vis[i]) dfs1(i);
	}
	void solve() {
		queue<int> q;
		rep(i, 1, n) if(a[i]) {
			q.push(i);
			dis[i] = 0;
		}
		while(q.size()) {
			int cur = q.front();
			q.pop();
			for(auto i : mp[cur]) {
				if(dis[i] == INF) {
					dis[i] = dis[cur] + 1;
					q.push(i);
				}
			}
		}
		rep(i, 1, n) for(auto j : mp[i]) 
			if(dis[j] + 1 == dis[i]) mp1[i].push_back(j);
		vector<int> ans;
		dfs(1, 1, 0);
		sort(all(v), [&](int a, int b) {
			return dep[a] > dep[b];
		});
		for(auto i : v) if(!vis[i]) {
			int cur = i;
			while(cur != 1 && dis[par[cur]] 
				>= dep[i] - dep[par[cur]]) cur = par[cur];
			dfs1(cur);
			ans.push_back(cur);
		}
		cout << ans.size() << "\n";
		rep(i, 0, signed(ans.size()) - 1)
			cout << ans[i] << " \n"[i + 1 == ans.size()];
	}
	
};
using namespace solver;
signed main() {
	ios::sync_with_stdio(false), cin.tie(0);
	int n, k;
	cin >> n >> k;
	init_(n);
	rep(i, 1, n - 1) {
		int a, b;
		cin >> a >> b;
		mp[a].push_back(b);
		mp[b].push_back(a);
	}
	rep(i, 1, k) {
		int x; cin >> x;
		a[x] = 1;
	}
	solve();
	return 0;
}


Compilation message

pastiri.cpp:17:13: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
   17 | void vprint(auto L,auto R){while(L<R)cerr<<*L<<" \n"[next(L)==R], ++L;}
      |             ^~~~
pastiri.cpp:17:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
   17 | void vprint(auto L,auto R){while(L<R)cerr<<*L<<" \n"[next(L)==R], ++L;}
      |                    ^~~~
pastiri.cpp: In function 'void solver::solve()':
pastiri.cpp:81:34: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   81 |    cout << ans[i] << " \n"[i + 1 == ans.size()];
      |                            ~~~~~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1081 ms 108756 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 1236 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 592 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 876 ms 93156 KB Output isn't correct
2 Halted 0 ms 0 KB -