国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

poj 3096 Surprising Strings

2019-11-11 01:59:25
字體:
來源:轉載
供稿:網友

題意:

看題目示例領會

Consider the string ZGBG. Its 0-pairs are ZG, GB, and BG. Since these three pairs are all different, ZGBG is 0-unique. Similarly, the 1-pairs of ZGBG are ZB and GG, and since these two pairs are different, ZGBG is 1-unique. Finally, the only 2-pair of ZGBG is ZG, so ZGBG is 2-unique. Thus ZGBG is surPRising.

解題思路:

用map存每個pair,判斷是否存在即可。

代碼:

#include <iostream>#include <cstdio>#include <map>#include <string>#include <cstring>using namespace std;int main(){    string str;    while(cin>>str)    {        map<string, int>d[80];        if(str=="*")break;        int i, j;        int len=str.size();        string mpstr;        int ans=1;        for(i=1; i<=len-1; i++)        {            for(j=0; j+i<len; j++)            {                char e[11];                e[0]=str[j];                e[1]=str[j+i];                e[2]='/0';                mpstr=e;//                cout<<mpstr<<endl;                if(d[i].find(mpstr)!=d[i].end())ans=0;                else d[i][mpstr]=1;            }        }        if(ans)        {            cout<<str<<" is surprising."<<endl;        }        else cout<<str<<" is NOT surprising."<<endl;    }    return 0;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 甘南县| 塔城市| 广水市| 澄城县| 苏尼特左旗| 昭通市| 通道| 隆尧县| 喀什市| 阳谷县| 都江堰市| 芦溪县| 汶川县| 长白| 天柱县| 景泰县| 平安县| 丹寨县| 宝应县| 威宁| 怀仁县| 布拖县| 清水县| 永宁县| 广平县| 朝阳区| 梅河口市| 长宁县| 霞浦县| 苏州市| 邵武市| 昆山市| 城固县| 上林县| 日照市| 高清| 双鸭山市| 电白县| 德江县| 屏东县| 化德县|