#include<stdio.h>
#include<string.h>
#include<queue>
using namespace std;
const int MAXN = 205;
const int oo = 1e9+7;
bool G[MAXN][MAXN], used[MAXN];
int My[MAXN], N;
bool Find(int i)
{
for(int j=1; j<=N; j++)
{
if( G[i][j] && used[j] == false )
{
used[j] = true;
if( !My[j] || Find(My[j]))
{
My[j] = i;
return true;
}
}
}
return false;
}
int main()
{
int T;
scanf("%d", &T);
while(T--)
{
int i, M, u, v, ans=0;
scanf("%d%d", &N, &M);
memset(G, false, sizeof(G));
memset(My, false, sizeof(My));
for(i=1; i<=M; i++)
{
scanf("%d%d", &u, &v);
G[u][v] = true;
}
for(i=1; i<=N; i++)
{
memset(used, false, sizeof(used));
if( Find(i) == true )
ans++;
}
printf("%d\n", N-ans);
}
return 0;
}