Sicily 1021. Couples

31 篇文章 0 订阅
/*
寻找couple,类似括号匹配,利用栈解决,
注意输入的位置是从1开始的,最后只要栈空即代表成功
 
另:每一个case之后都要记得初始化数据 
另;对容器进行操作之前记得检查是否为空 
 
*/
/*
Passed all 2 test cases
Run Time: 0.18secs
Run Memory: 1488KB
*/


#include <iostream>
#include <stack>


using namespace std;


int couples[200000];


int main()
{
    int N;
    int a;
    int b;
    cin >> N;
    while (N > 0){
        stack<int> comput;
        
        for(int i=0; i<N; i++){
            cin >> a >> b;
            couples[a-1] = i;
            couples[b-1] = i;
        }
        for(int i=0; i<2*N; i++){
            int buf = couples[i];
            int top = -1;
            if(!comput.empty())
                top = comput.top();
            
            if(buf == top){   //相等说明找到了一个couple,将栈顶弹出 
                comput.pop();
            }else{    //否则不是couple,将新元素压入栈 
                comput.push(buf);
            } 
        }
        if(comput.empty()){   //如果栈空,则说明可以完美配对 
            cout << "Yes" << endl;
        }else{   //否则配对失败 
            cout << "No" << endl;
        }


        cin >> N;
    } 

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值