Codeforces Global Round 17 B 双指针 模拟

题目

给你一个序列A
要求只删除一个值(删除他的一部分或者全部或者不删)
使得原序列为回文序列
4 2 1 2 4
1 2 1
特别的
单个值也是回文序列
1

题解思路

第二次碰到这种题目了,还是Wa了一发。

直接两个指针一头一尾。
碰到不同的时候就是不是你死就是我亡。
肯定是选择删除两个种的一个。
枚举即可。

AC代码
#include <bits/stdc++.h>
//#include <unordered_map>
//priority_queue
#define PII pair<int,int>
#define ll long long

using namespace std;

const  int  INF =  0x3f3f3f3f;
const  int N = 200100 ;
int a[N] ; 
int n ;

int main()
{
    ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int T ;
    cin >> T ;
    while (T--)
    {
        cin >> n ;
        for (int i = 1 ; i <= n ; i++ )
            cin >> a[i] ; 
        if ( n <= 2 )
            cout << "YES\n";
        else
        {
            int t1 = 1 , t2 = n ;
            bool falg = 1 ; 
            int ck = -1 ; 
            while (t1 < t2 )
            {
                if ( a[t1] != a[t2] && ck == -1 )
                {
                    ck = a[t1] ; 
                    falg = 1 ; 
                    int s1 = t1 , s2 = t2 ; 
                    while ( t1 < t2 )
                    {
                        if ( a[t1] != a[t2] && ck != -1 )
                        {
                            if ( a[t1] == ck )
                                t1++;
                            else if (a[t2] == ck )
                                t2--;
                            else
                            {
                                falg = 0 ;
                                break ; 
                            }
                        }
                        if (a[t1] == a[t2] )
                        {
                            t1++;
                            t2--;
                        }
                    }
                    if (falg)
                        break ;
                    t1 = s1 , t2 = s2 ; 
                    falg = 1 ; 
                    ck = a[t2] ;
                    while ( t1 < t2 )
                    {
                        if ( a[t1] != a[t2] && ck != -1 )
                        {
                            if ( a[t1] == ck )
                                t1++;
                            else if (a[t2] == ck )
                                t2--;
                            else
                            {
                                falg = 0 ;
                                break ; 
                            }
                        }
                        if (a[t1] == a[t2] )
                        {
                            t1++;
                            t2--;
                        }
                    }
                    break ; 
                }
                if (a[t1] == a[t2] )
                {
                    t1++;
                    t2--;
                }
            }
            if (falg)
                cout << "YES\n" ;
            else
                cout << "NO\n" ;
        }
    }
    return 0 ;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值