/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 14ms 1.602 MiB
#3 Wrong Answer 14ms 1.492 MiB

Code

#include <iostream>
#include <vector>
#include <unordered_map>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.precision(10);
    cout << fixed;

    int t;
    cin >> t;

    while (t--) {
        int n;
        cin >> n;
        string s;
        cin >> s;

        unordered_map<char, int> charCount;
        for (char c : s) {
            charCount[c]++;
        }

        int totalSwaps = 0;
        for (auto& entry : charCount) {
            int count = entry.second;
            if (count > 1) {
                totalSwaps += (count * (count - 1)) ;
            }
        }

        cout << totalSwaps << endl;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1038 Do not touch my string
Contest
Brain Booster #3
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-06 17:26:57
Judged At
2024-11-11 03:32:13
Judged By
Score
10
Total Time
14ms
Peak Memory
1.602 MiB