Codeforces Round #480 (Div. 2) A. Links and Pearls

A. Links and Pearls

A necklace can be described as a string of links ('-') and pearls ('o'), with the last link or pearl connected to the first one.

You can remove a link or a pearl and insert it between two other existing links or pearls (or between a link and a pearl) on the necklace. This process can be repeated as many times as you like, but you can't throw away any parts.

Can you make the number of links between every two adjacent pearls equal? Two pearls are considered to be adjacent if there is no other pearl between them.

Note that the final necklace should remain as one circular part of the same length as the initial necklace.

Input

The only line of input contains a string ss (3|s|1003≤|s|≤100), representing the necklace, where a dash '-' represents a link and the lowercase English letter 'o' represents a pearl.

Output

Print "YES" if the links and pearls can be rejoined such that the number of links between adjacent pearls is equal. Otherwise print "NO".

You can print each letter in any case (upper or lower).

Examples
input
Copy
-o-o--
output
Copy
YES
input
Copy
-o---
output
Copy
YES
input
Copy
-o---o-
output
Copy
NO
input
Copy
ooo
output
Copy
YES

题意:现在有一个环形项链,‘-’代表连接的链,‘o’代表珍珠,现在你可以随意拆,随意组装,只能使用现有的-和o,不可以丢掉,能否组合成:每个珍珠之间的链的长度都相等。

思路:因为是环,所以有几个珍珠,就必然有几个间隔,这些间隔内的链长都相等,即链的总数整除珍珠总数即可YES,否则NO。

ps:有个特判,题目公告有说,没有珍珠的话,判定为YES。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<string>
#include<map>
#include<vector>
#include<queue>
#include<stack>
#include<set>
#define ll long long
#define exp 1e-8
#define mst(a,k) memset(a,k,sizeof(a))
using namespace std;
char s[110];
int main()
{
    while(~scanf("%s",s+1))
    {
        ll len=strlen(s+1);
        ll ans1=0,ans2=0;
        for(ll i=1;i<=len;i++)
        {
            if(s[i]=='o')ans1++;
            else ans2++;
        }
        if(ans1==0){printf("YES\n");continue;}   //特判
        if(ans2%ans1==0)printf("YES\n");
        else printf("NO\n");
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值