也就是转换到树形删边游戏,
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int N=1005;
int T,n,m,cnt,h[N],w[N],s[N],top;
bool v[N],ve[N];
struct qwe
{
int ne,to;
}e[N<<1];
int read()
{
int r=0,f=1;
char p=getchar();
while(p>'9'||p<'0')
{
if(p=='-')
f=-1;
p=getchar();
}
while(p>='0'&&p<='9')
{
r=r*10+p-48;
p=getchar();
}
return r*f;
}
void add(int u,int v)
{
cnt++;
e[cnt].ne=h[u];
e[cnt].to=v;
h[u]=cnt;
}
int dfs(int u)
{
int ans=0;
v[s[++top]=u]=1;
for(int i=h[u];i;i=e[i].ne)
if(!ve[i])
{
int sg;
ve[i]=1,ve[i^1]=1;
if(!v[e[i].to])
sg=dfs(e[i].to)+1;
else
{
while(s[top]!=e[i].to)
w[s[top--]]=1;
return 1;
}
w[e[i].to]?ans^=sg%2:ans^=sg;
}
return ans;
}
int main()
{
while(~scanf("%d",&T))
{
int ans=0;
while(T--)
{
memset(h,0,sizeof(h));
memset(v,0,sizeof(v));
memset(ve,0,sizeof(ve));
memset(w,0,sizeof(w));
top=0;cnt=1;
n=read(),m=read();
for(int i=1;i<=m;i++)
{
int x=read(),y=read();
add(x,y),add(y,x);
}
ans^=dfs(1);
}
ans?puts("Sally"):puts("Harry");
}
return 0;
}