#include using namespace std; using ll = long long; using ull = unsigned long long; #define ALL(obj) (obj).begin(),(obj).end() #define SPEED cin.tie(0);ios::sync_with_stdio(false); template using PQ = priority_queue; template using PQR = priority_queue,greater>; constexpr long long MOD = (long long)1e9 + 7; constexpr long long MOD2 = 998244353; constexpr long long HIGHINF = (long long)1e18; constexpr long long LOWINF = (long long)1e15; constexpr long double PI = 3.1415926535897932384626433; template vector multivector(size_t N,T init){return vector(N,init);} template auto multivector(size_t N,T... t){return vector(N,multivector(t...));} template void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template ostream &operator<<(ostream &o, const map&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template ostream &operator<<(ostream &o, const set&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template ostream &operator<<(ostream &o, const multiset&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template ostream &operator<<(ostream &o, const vector&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template ostream &operator<<(ostream &o, const pair&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} void print(void) {cout << endl;} template void print(Head&& head) {cout << head;print();} template void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward(tail)...);} template void chmax(T& a, const T b){a=max(a,b);} template void chmin(T& a, const T b){a=min(a,b);} void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} //Dijkstra template class Dijkstra { public: int N; T inf; vector cost; vector>> edge; Dijkstra(const int N, T inf) : N(N), inf(inf),cost(N), edge(N) { } void make_edge(int from, int to, T w) { edge[from].push_back({ w,to }); } void solve(int start) { for(int i = 0; i < N; ++i) cost[i] = inf; priority_queue, vector>, greater>> pq; cost[start] = 0; pq.push({ 0,start }); while (!pq.empty()) { T v = pq.top().first; int from = pq.top().second; pq.pop(); for (auto u : edge[from]) { T w = v + u.first; int to = u.second; if (w < cost[to]) { cost[to] = w; pq.push({ w,to }); } } } return; } }; //verify https://atcoder.jp/contests/abc077/tasks/arc084_b int main() { int N,M; cin >> N >> M; vector dp(N,0); for(int i = 2; i < N; ++i) { dp[i] = dp[i/2+i%2]+1; } Dijkstra dijk(N,1234567); for(int i = 0; i < M; ++i){ int p,q; cin >> p >> q; p--,q--; dijk.make_edge(p,q,1); dijk.make_edge(q,p,1); } int Q; cin >> Q; vector> ans; while (Q--){ int a; cin >> a; a--; dijk.solve(a); int cnt = 0,maxi = 0; for(int i = 0; i < N; ++i){ if(dijk.cost[i]!=1234567) cnt++; if(dijk.cost[i]!=1234567) chmax(maxi,dijk.cost[i]); } cnt--; ans.push_back({cnt,dp[maxi]}); } for(auto& e:ans) cout << e.first << " " << e.second << endl; return 0; }