Cow Contest_poj3660_floyd

56 篇文章 0 订阅

Description


N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest. As we all know, some cows code better than others. Each cow has a certain constant skill rating that is unique among the competitors.

The contest is conducted in several head-to-head rounds, each between two cows. If cow A has a greater skill level than cow B (1 ≤ A ≤ N; 1 ≤ B ≤ N; A ≠ B), then cow A will always beat cow B.

Farmer John is trying to rank the cows by skill level. Given a list the results of M (1 ≤ M ≤ 4,500) two-cow rounds, determine the number of cows whose ranks can be precisely determined from the results. It is guaranteed that the results of the rounds will not be contradictory.

Input


  • Line 1: Two space-separated integers: N and M
  • Lines 2..M+1: Each line contains two space-separated integers that describe the competitors and results (the first integer, A, is the winner) of a single round of competition: A and B

Output


  • Line 1: A single integer representing the number of cows whose ranks can be determined

Analysis


跟以前做过的一道珍珠很像但是我脑胡了(┬_┬)
大概思路就是floyd,然后看看比这个点大和比这个点小的是不是刚好n-1个,因为要算上本身所以-1
一开始想的是拓扑然后看每次是不是只入队了1个,但是后面发现这样不能保证唯一

Code


/*
ID:wjp13241
PROG:cow conest
LANG:C++
*/
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
#include <stack>
#include <queue>
#define fo(i,a,b) for(int i=a;i<=b;i++)
#define dfo(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,x,e) for(int i=ls[x];i;i=e[i].next)
#define fil(x,t) memset(x,t,sizeof(x))
#define STP system("pause")
#define min(x,y) x<y?x:y
#define max(x,y) x>y?x:y
#define PuB(v,x) v.push_back(x)
#define PoB(v) v.pop_back()
#define ld long double
#define ll long long
#define db double
#define INF 0x3f3f3f3f
#define LIM 100000000
#define EPS 1e-4
#define N 201
#define E N*N+1
using namespace std;
int f[N][N];
int main()
{
    ios::sync_with_stdio(false);
    int n,m;
    cin>>n>>m;
    fo(i,1,m)
    {
        int x,y;
        cin>>x>>y;
        f[x][y]=1;
        f[y][x]=-1;
    }
    fo(k,1,n)
        fo(i,1,n)
            fo(j,1,n)
                if (i^j&&i^k&&j^k)
                {
                    if (f[i][k]==1&&f[k][j]==1)
                        f[i][j]=1;
                    else
                        if (f[i][k]==2&&f[k][j]==2)
                            f[i][j]=2;
                }
    int ans=0;
    fo(i,1,n)
    {
        int a=0,b=0;
        fo(j,1,n)
        {
            if (f[i][j]==1)
                a++;
            if (f[i][j]==2)
                b++;
        }
        // if (a>=(n+1)/2||b>=(n+1)/2)
        if (a+b+1==n)
            ans++;
    }
    cout<<ans<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值