#include
#include
#include
using namespace std;
const int N = 100010;
bool s[N];
int main()
{
int n, k;
cin >> n >> k;
int sum = 0;
for (int i = 1; i <= k; i ++ )
{
int x, y;
cin >> x >> y;
if (y != 0 && !s[y]) sum ++;
s[x] = true;
}
cout << sum << endl;
return 0;
}
考试时候拉裤兜完全是因为非要写函数带循环。。。。。
最后TLE,前两题尽量少写函数为好