Codeforces Round #719 (Div. 3) E. Arranging The Sheep

Codeforces Round #719 (Div. 3) E. Arranging The Sheep_第1张图片Codeforces Round #719 (Div. 3) E. Arranging The Sheep_第2张图片

翻译:

你正在玩“安排羊”游戏。这个游戏的目标是让羊排好队。游戏中的关卡是由长度为的字符串描述的,由角色的’组成。'(空格)和'*'(绵羊)。在一个动作中,你可以移动任何羊向左或向右移动一个方格,如果相应的方格存在并且为空的话。一旦羊群排好队,游戏就结束了,也就是说,羊群之间不应该有空格子。

例如,如果=6,并且关卡由字符串“**.*..”描述,那么就可能出现以下游戏场景:

4位的羊向右移动,水平状态:“**..*.”;
2位的羊向右移动,水平状态:“*.*.*.”;
位置1的羊向右移动,水平状态为:“.**.*.”;
3位的羊向右移动,水平状态:“。*.**.”;
位置2的羊向右移动,水平状态:“..***.”;
羊排好队,比赛结束。
对于一个特定的关卡,你需要确定完成该关卡所需的最小移动数。

输入
第一行包含一个整数(1≤≤104)。然后是测试用例。

每个测试用例的第一行包含一个整数(1≤≤106)。

每个测试用例的第二行包含一个长度为的字符串,由字符'组成。’(空白)和‘*’(绵羊)——关卡的描述。

可以保证在所有测试用例中的总和不超过106。

输出
对于每个测试用例,输出完成关卡所需的最小移动数。

例子
inputCopy
5
6
* * . * . .
5
*****
3.
*。
3.
...
10
*.*...*.**
outputCopy
1
0
0
0
9

思路:

要把羊移动到一起,所以我们可以设一个方向,集体往哪边移动,最左和最右,中间都会有多余不必要的操作,而且两端的移动次数叠加都是最大的,所以我们选中心点,然后来让两边移动。

代码:

#include 
#include 
#include 
#include 
#include 
#include 
#include
#include
#include
#include
#include
#include
#include
using namespace::std;
typedef long long  ll;
int n,t;
inline __int128 read(){
    __int128 x = 0, f = 1;
    char ch = getchar();
    while(ch < '0' || ch > '9'){
        if(ch == '-')
            f = -1;
        ch = getchar();
    }
    while(ch >= '0' && ch <= '9'){
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}
inline void print(__int128 x){
    if(x < 0){
        putchar('-');
        x = -x;
    }
    if(x > 9)
        print(x / 10);
    putchar(x % 10 + '0');
}

string s;
void solv(){
    cin>>n>>s;
    vectorq;
    int bj=0;
    for (int i =0; i=0) {
        if (s[l]=='*') {
            ans+=zz-l-1-ff;
            ff++;
        }
        l--;
//        printf("%lld\n",ans);
    }
    while (r>t;
    while (t--) {
        solv();
    }
    return 0;
}

 

你可能感兴趣的:(CodeForces,c++,算法,c语言)