題意
分析
問題是要看出來這是個floyd閉包問題。我沒看出來- -
分析之後補充。
程式碼
// Origin:
// Theme: Graph Theory (Basic)
// Date: 080618
// Author: Sam X
//#include <bits/stdc++.h>
#include <iostream>
#include <utility>
#include <iomanip>
#include <cstring>
#include <cmath>
#define MP make_pair
#define PB push_back
#define fi first
#define se second
#define ZERO(x) memset((x), 0, sizeof(x))
#define ALL(x) (x).begin(),(x).end()
#define rep(i, a, b) for (int i = (a); i <= (b); ++i)
#define per(i, a, b) for (int i = (a); i >= (b); --i)
#define QUICKIO \
ios::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0);
using namespace std;
typedef long long ll;
typedef unsigned long long ul;
typedef pair<int,int> pi;
typedef pair<int,pi> pii;
int n,m;
bool d[105][105];
int main()
{
while(cin>>n>>m)
{
ZERO(d);
rep(i,1,m)
{
int x,y; cin>>x>>y;
d[x][y]=true;
}
rep(k,1,n)
rep(i,1,n)
rep(j,1,n)
d[i][j]=d[i][j]||(d[i][k] && d[k][j]);
int ans=0;
rep(i,1,n)
{
int sum=0;
rep(j,1,n)
{
if(d[i][j]||d[j][i]) sum++;
}
if(sum==n-1) ans++;
}
cout<<ans<<endl;
}
return 0;
}