程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CF 412 D Giving Awards£¨ÍØÆËÅÅÐò£©

CF 412 D Giving Awards£¨ÍØÆËÅÅÐò£©

編輯:C++入門知識

CF 412 D Giving Awards£¨ÍØÆËÅÅÐò£©


The employees of the R1 company often spend time together: they watch football, they go camping, they solve contests. So, it's no big deal that sometimes someone pays for someone else.

Today is the day of giving out money rewards. The R1 company CEO will invite employees into his office one by one, rewarding each one for the hard work this month. The CEO knows who owes money to whom. And he also understands that if he invites person x to his office for a reward, and then immediately invite person y, who has lent some money to person x, then they can meet. Of course, in such a situation, the joy of person x from his brand new money reward will be much less. Therefore, the R1 CEO decided to invite the staff in such an order that the described situation will not happen for any pair of employees invited one after another.

However, there are a lot of employees in the company, and the CEO doesn't have a lot of time. Therefore, the task has been assigned to you. Given the debt relationships between all the employees, determine in which order they should be invited to the office of the R1 company CEO, or determine that the described order does not exist.

Input

The first line contains space-separated integers n and m \ ¡ª the number of employees in R1 and the number of debt relations. Each of the following m lines contains two space-separated integers ai, bi (1?¡Ü?ai,?bi?¡Ü?n; ai?¡Ù?bi), these integers indicate that the person number ai owes money to a person a number bi. Assume that all the employees are numbered from 1 to n.

It is guaranteed that each pair of people p, q is mentioned in the input data at mZ†·Ÿ"http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vc3Qgb25jZS4gSW4gcGFydGljdWxhciwgdGhlIGlucHV0IGRhdGEgd2lsbCBub3QgY29udGFpbiBwYWlycyA8ZW0+cDwvZW0+LCA8ZW0+cTwvZW0+IGFuZCA8ZW0+cTwvZW0+LCA8ZW0+cDwvZW0+IHNpbXVsdGFuZW91c2x5LjwvcD4KCgoKT3V0cHV0CjxwPgpQcmludCAtMSBpZiB0aGUgZGVzY3JpYmVkIG9yZGVyIGRvZXMgbm90IGV4aXN0LiBPdGhlcndpc2UsIHByaW50IHRoZSBwZXJtdXRhdGlvbiBvZiA8ZW0+bjwvZW0+IGRpc3RpbmN0IGludGVnZXJzLiBUaGUgZmlyc3QgbnVtYmVyIHNob3VsZCBkZW5vdGUgdGhlIG51bWJlciBvZiB0aGUKIHBlcnNvbiB3aG8gZ29lcyB0byB0aGUgQ0VPIG9mZmljZSBmaXJzdCwgdGhlIHNlY29uZCBudW1iZXIgZGVub3RlIHRoZSBwZXJzb24gd2hvIGdvZXMgc2Vjb25kIGFuZCBzbyBvbi48L3A+CjxwPgpJZiB0aGVyZSBhcmUgbXVsdGlwbGUgY29ycmVjdCBvcmRlcnMsIHlvdSBhcmUgYWxsb3dlZCB0byBwcmludCBhbnkgb2YgdGhlbS48L3A+CgoKClNhbXBsZSB0ZXN0KHMpCgoKCmlucHV0CjxwcmUgY2xhc3M9"brush:java;">2 1 1 2 output

2 1 
input
3 3
1 2
2 3
3 1
output

2 1 3


Âú×ãÈç¹ûxÏòy½è¹ýÇ®£¬¾ÍÏȸøy·¢£¬ÍØÆËÅÅÐò£¬·ûºÏÌõ¼þµÄÈ˽øÐÐÍØÆËÅÅÐòÊä³ö¡£

#include
#include
#include
#include
#include
typedef long long LL;
using namespace std;
#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )
#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )
#define CLEAR( a , x ) memset ( a , x , sizeof a )
const int maxn=3*1e4+100;
vectormp[maxn];
int vis[maxn];
int n,num,m;
void dfs(int x)
{
    if(vis[x])  return ;
    vis[x]=1;
    for(int i=0;i>n>>m)
    {
        CLEAR(vis,0);
        REPF(i,1,n)
           mp[i].clear();
        REP(i,m)
        {
            cin>>x>>y;
            mp[x].push_back(y);
        }
        num=0;
        REPF(i,1,n)
          if(!vis[i])  dfs(i);

    }
    return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved