sgu 170 Particles

Posted gaudar

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sgu 170 Particles相关的知识,希望对你有一定的参考价值。

题意:一个串变为另一个串要移动的次数。

串中相对位置相同的移过去就行。

#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cstring>
#include <map>
#include <queue>
#include <set>
#include <cassert>
#define mkp make_pair
using namespace std;
const double EPS=1e-8;
const int SZ=5010,INF=0x7FFFFFFF;
typedef long long lon;

int main()
{
    std::ios::sync_with_stdio(0);
    //freopen("d:\1.txt","r",stdin);
    lon casenum;
    //cin>>casenum;
    //for(lon time=1;time<=casenum;++time)
    {
        string str1,str2;
        cin>>str1>>str2;
        vector<int> arr,dst;
        for(int i=0;i<str1.size();++i)if(str1[i]==+)arr.push_back(i);
        for(int i=0;i<str2.size();++i)if(str2[i]==+)dst.push_back(i);
        if(arr.size()!=dst.size())cout<<-1<<endl;
        else
        {
            int res=0;
            for(int i=0;i<arr.size();++i)
            {
                res+=abs(arr[i]-dst[i]);
            }
            cout<<res<<endl;
        }
        
    }
    return 0;
}

 

以上是关于sgu 170 Particles的主要内容,如果未能解决你的问题,请参考以下文章

Vue粒子特效使用教程(vue-particles插件)

Vue粒子特效使用教程(vue-particles插件)

Particles.js 进入 Vue 组件

vue开发干货:Vue粒子特效(vue-particles插件)

今日SGU 5.15

弄个知乎的粒子动态背景_实践particles.js