QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#251927#5422. Perfect PalindromeSarwar82WA 1ms3524kbC++201.2kb2023-11-15 13:07:242023-11-15 13:07:25

Judging History

你现在查看的是最新测评结果

  • [2023-11-15 13:07:25]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3524kb
  • [2023-11-15 13:07:24]
  • 提交

answer

/*If we keep holding onto yesterday, what are we going to be tomorrow?*/


#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
#define int long long int 
bool debugg = false;
#define dbg if(debugg)
#define F first 
#define S second 
template <typename T>
using order_set = tree<T, null_type,less<T>, rb_tree_tag,tree_order_statistics_node_update>;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());  

int f(string &s)
{
    int n = s.size() , mx = 0;
    map<char,int>cnt;
    for(int i = 0 ; i < n ; i ++){
        cnt[s[i]] ++;
        mx = max(mx , cnt[s[i]]);
    }

    return n - mx;
}

void solve()
{
    string s;
    cin >> s;

    int n = s.size();
    if(n % 2){
        cout << f(s) << '\n';
    }

    else{
        string a , b;
        for(int i = 0 ; i < n ; i ++){
            if(i % 2) a += s[i];
            else b += s[i];
        }

        cout << f(a) + f(b) << '\n';
    }
}



int32_t main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
        
    int t  = 1;
    cin >> t;
    
    while(t--){
        solve();
    }

    return 0;

}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3524kb

input:

2
abcb
xxx

output:

1
0

result:

wrong answer 1st numbers differ - expected: '2', found: '1'