/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 1ms 540.0 KiB
#5 Accepted 2ms 744.0 KiB
#6 Accepted 1ms 632.0 KiB
#7 Accepted 2ms 740.0 KiB
#8 Accepted 22ms 2.637 MiB

Code

#include<bits/stdc++.h>
typedef long long   ll;
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout<<it<<" "; cout<<endl;
#define _ASRafi__   ios::sync_with_stdio(false); cin.tie(0);
using namespace std;

void solve()
{
    ll n, ans = 0;
    string s1;
    cin >> n >> s1;
    vector<vector<ll>> pre(26, vector<ll> (n));
    for (int i = 0; i < n; i++)
    {
        pre[s1[i] - 'a'][i]++;
    }
    for(int i = 0; i < 26; i++)
    {
        for(int j = 1; j < n; j++)
        {
            pre[i][j] += pre[i][j - 1];
        }
    }
    for(int i = 1; i < n; i++)
    {
        for(int j = 0; j < 26; j++)
        {
            if(s1[i] - 'a' == j or pre[j][n - 1] == 0) continue;
            if(pre[j][i] == pre[j][n - 1] - pre[j][i]) 
            {
                ++ans;
                break;
            }
        }
    }
    cout << ans << endl;
    return;
}

int32_t main()
{
    _ASRafi__;
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++)
    {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1021 Pivot points
Language
C++17 (G++ 13.2.0)
Submit At
2024-03-02 18:04:55
Judged At
2024-03-02 18:04:55
Judged By
Score
100
Total Time
22ms
Peak Memory
2.637 MiB