第十八届浙大城市学院程序设计竞赛 F Palindrome dfs+双指针

原题链接:https://ac.nowcoder.com/acm/contest/12986/F

题意

给一个字符串,问能否消去小于两个字符使得字符串变成回文串

分析

根据回文串的性质,两端一定相等,因此我们定义两个指针,一个指向开头,一个指向结尾

  1. 如果当前两个字符相同,那么两个指针都像中间推进一格
  2. 如果当前两个字符不相同,考虑当前还剩几次删除次数。如果有两个,那么可以选择左端删,或者选择右端,或者两端都删;如果只有一个,那么选择左端删,或者选择右端删;如果没有了,那么直接返回false

由于是双指针,时间复杂度也是线性的

Code

#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define re register
typedef long long ll;
typedef pair<ll, ll> PII;
const int N = 1e6 + 10, M = 1e6 + 5, INF = 0x3f3f3f3f;
const int MOD = 1e9+7;
string s;
bool check(int l, int r, int cnt) {
    if (l >= r) return true;
    if (s[l] == s[r]) return check(l+1, r-1, cnt);
    else {
        if (cnt == 2) return check(l+1, r, cnt-1) || check(l, r-1, cnt-1) || check(l+1, r-1, cnt-2);
        if (cnt == 1) return check(l+1, r, cnt-1) || check(l, r-1, cnt-1);
        if (cnt == 0) return false;
    }
    return false;
}
void solve() {
    int T; cin >> T; while (T--) {
        int n; cin >> n;
        cin >> s;
        if (check(0, n-1, 2)) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
}
signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
#ifdef ACM_LOCAL
    freopen("input", "r", stdin);
    freopen("output", "w", stdout);
#endif
    solve();
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值