C. Game On Leaves Codeforces Round 646 (Div. 2)

Ayush and Ashish play a game on an unrooted tree consisting of n� nodes numbered 11 to n�. Players make the following move in turns:

  • Select any leaf node in the tree and remove it together with any edge which has this node as one of its endpoints. A leaf node is a node with degree less than or equal to 11.

A tree is a connected undirected graph without cycles.

There is a special node numbered x�. The player who removes this node wins the game.

Ayush moves first. Determine the winner of the game if each player plays optimally.

Input

The first line of the input contains a single integer t� (1≤t≤10)(1≤�≤10) — the number of testcases. The description of the test cases follows.

The first line of each testcase contains two integers n� and x� (1≤n≤1000,1≤x≤n)(1≤�≤1000,1≤�≤�) — the number of nodes in the tree and the special node respectively.

Each of the next n−1�−1 lines contain two integers u�, v� (1≤u,v≤n, u≠v)(1≤�,�≤�, �≠�), meaning that there is an edge between nodes u� and v� in the tree.

Output

For every test case, if Ayush wins the game, print "Ayush", otherwise print "Ashish" (without quotes).

Examples

input

Copy

1
3 1
2 1
3 1

output

Copy

Ashish

input

Copy

1
3 2
1 2
1 3

output

Copy

Ayush

Note

For the 11st test case, Ayush can only remove node 22 or 33, after which node 11 becomes a leaf node and Ashish can remove it in his turn.

For the 22nd test case, Ayush can remove node 22 in the first move itself.

题目大意:

给n个节点,n-1条边,组成树,每次取叶子节点,取到m节点的人就是胜利。

思路:

1、在m节点就是叶节点的情况下,先手必胜。

2、其余情况下,节点数为偶数先手必胜,节点数为奇数后手必胜。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl "\n"

void solve(){
	ll n,m,x,y,sum=0;
	cin >> n >> m;
	for(ll i = 1 ; i < n ; i ++){
		cin >> x >> y;
		if(x == m || y == m)sum++;
	}
	if(sum <= 1)cout << "Ayush" << endl;
	else if(n&1)cout << "Ashish" << endl;
	else cout << "Ayush" << endl;
	return;
}

int main(){
	ll t=1;cin >> t;
	while(t--)solve();
	return 0;
}

  • 8
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值