brucehb


私信TA

用户名:brucehb

访问量:3563

签 名:

等  级
排  名 1479
经  验 2848
参赛次数 0
文章发表 27
年  龄 0
在职情况 学生
学  校 北航
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>

using namespace std;


int main()

{

    string str;

    cin >> str;

    int n = str.size();

    int base = 1;

    int num = 2;

    int res = 0;

    for (int i = n-2; i >= 0; i--) {

        int temp = 0;

        for (int j = i + 1; j < n; j++) {

            if (str[j] < str[i]) {

                temp++;

            }

        }

        res += temp * base;

        base *= num;

        num++;

    }

    cout << res << endl;

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »