【HDOJ】5154 Harry and Magical Computer

來源:互聯網
上載者:User

標籤:

拓撲排序。

 1 /* 5154 */ 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #include <cstdlib> 6 #include <queue> 7 #include <vector> 8 using namespace std; 9 10 #define MAXN 10511 12 vector<int> vec[MAXN];13 vector<int>::iterator iter;14 int cnt[MAXN];15 int n, m;16 17 void init() {18     int i;19     20     memset(cnt, 0, sizeof(cnt));21     for (i=1; i<=n; ++i)22         vec[i].clear();23 }24 25 bool topSort() {26     int i, j, k, tmp;27     int c = 0;28     queue<int> Q;29     30     for (i=1; i<=n; ++i) {31         if (cnt[i] == 0) {32             Q.push(i);33         }34     }35     36     while (!Q.empty()) {37         ++c;38         i = Q.front();39         Q.pop();40         for (iter=vec[i].begin(); iter!=vec[i].end(); ++iter) {41             if (--cnt[*iter] == 0) {42                 Q.push(*iter);43             }44         }45     }46     47     if (c < n)48         return false;49     else50         return true;51 }52 53 int main() {54     int i, j, k;55     bool flag;56     57     #ifndef ONLINE_JUDGE58         freopen("data.in", "r", stdin);59     #endif60     61     while (scanf("%d %d", &n, &m) != EOF) {62         init();63         for (i=0; i<m; ++i) {64             scanf("%d %d", &j, &k);65             vec[j].push_back(k);66             ++cnt[k];67         }68         flag = topSort();69         if (flag)70             printf("YES\n");71         else72             printf("NO\n");73     }74     75     return 0;76 }

 

【HDOJ】5154 Harry and Magical Computer

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.