码迷,mamicode.com
首页 > 其他好文 > 详细

SOJ 1021 Couples

时间:2015-09-23 21:07:12      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

题目大意:n(1 ≤ n ≤ 100000)对夫妻形成环,编号为1到2n。相邻的夫妻能够从环中删除,若能删除全部夫妻,则输出Yes,否则输出No。有多组测试样式,当n等于0时,输入结束。

解题思路:逆向思维,在生成环的过程进行处理,而不是在生成环后再删除夫妻。

       用到的数据结构:栈。

 

代码如下:

#include <iostream>
#include <stack>
#include <map>
using namespace std;

int main() {
    int n, nn;
    while (cin >> n, n != 0) {
        stack<int> st;
        map<int, int> m;

        // 读入夫妻对
        int w, h;
        for (int i = 0; i < n; i++) {
            cin >> w >> h;
            m[w] = h;
            m[h] = w;
        }

        nn = n * 2;
        for (int i = 1; i <= nn; i++) {    // 夫妻编号从1开始到n*2
            if (!st.empty() && st.top() == m[i]) {
                st.pop();
            } else {
                st.push(i);
            }
        }

        if (st.empty()) {
            cout << "Yes" << endl;
        } else {
            cout << "No" << endl;
        }
    }

    return 0;
}

 

SOJ 1021 Couples

标签:

原文地址:http://www.cnblogs.com/mchcylh/p/4833370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!