Codeforces Round #723 (Div. 2) D. Kill Anton

D. Kill Anton

题意

给出一个只有 4 4 4 个字母组成的字符串 S S S,请对这个字符串重新排列得到字符串 T T T,使得对字符串 T T T 需要做最多次变换得到字符串 S S S 。每次变换可以交换相邻的两个字母。

题解
  • T T T S S S 的变换过程,一定不会交换相邻相同的字母;
  • T T T S S S 的变换次数等于从 S S S T T T 的变换次数;
  • T T T 一定是相同的字母连续出现,一共有 4 4 4 种字母,所以一共有 4 ! = 24 4!=24 4!=24 种可能的答案,选出变换次数最多的即可。
  • 变换次数等于逆序对个数。
代码
#include<bits/stdc++.h>
#define rep(i, a, n) for (int i = a; i <= n; ++i)
#define per(i, a, n) for (int i = n; i >= a; --i)
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 5;
char s[maxn], t[maxn], ans[maxn];
map<char, int> mp;
ll n, c[10], dis;
void add(int pos, int x) {
    while (pos < 10) c[pos] += x, pos += pos & -pos;
}
ll getsum(int pos) {
    ll ans = 0;
    while (pos) ans += c[pos], pos -= pos & -pos;
    return ans;
}
bool check() {
    ll d = 0;
    memset(c, 0, sizeof(c));
    rep(i, 1, n) {
        d += i - 1 - getsum(mp[s[i]]);
        add(mp[s[i]], 1);
    }
    if (d < dis) return 0; 
    dis = d;
    return 1;
}
int main() {
    int T;
    scanf("%d", &T);
    while (T--) {
        scanf("%s", s + 1);
        n = strlen(s + 1);
        dis = 0;
        vector<int> cnt(26);
        rep(i, 1, n) cnt[s[i] - 'A']++;
        char D[5] = "ANOT";
        do {
            int m = 0;
            for (int i = 0; i < 4; ++i) {
                mp[D[i]] = i + 1;
                rep(_, 1, cnt[D[i] - 'A']) t[++m] = D[i];
            }
            if (check()) rep(i, 1, n) ans[i] = t[i];
        } while (next_permutation(D, D + 4));
        ans[n + 1] = 0;
        printf("%s\n", ans + 1);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值