码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces-5

时间:2019-04-11 01:25:18      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:pretty   lse   lag   space   end   size   using   flag   name   

这题可害苦了我
最后用了大哥的代码才过的

Diverse String

#include<iostream>
#include<cstdio>
#include<string.h>
#include<algorithm>
using  namespace std;
int main()
{
    int T;
    string s;
    cin>>T;
    while(T--)
    {
        cin>>s;
        sort(s.begin(),s.end());
        bool flag=true;
        for(int i=1;i<s.size();i++)
        {
            if(s[i]!=s[i-1]+1){
                puts("NO");
                flag=false;
                break;
            }
        }
        if(flag)
            puts("Yes");
    }
    return 0;
}

codeforces-5

标签:pretty   lse   lag   space   end   size   using   flag   name   

原文地址:https://www.cnblogs.com/WABoom/p/10687011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!