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

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

poj 3096 Surprising Strings

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

題意:

看題目示例領會

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;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 鲁山县| 陈巴尔虎旗| 镇原县| 武城县| 怀安县| 天门市| 清原| 龙口市| 孙吴县| 泾川县| 东丽区| 扎鲁特旗| 连平县| 延津县| 义乌市| 仪征市| 通辽市| 曲阳县| 嘉黎县| 凤庆县| 昭通市| 庄河市| 廉江市| 和平区| 桑植县| 得荣县| 通河县| 陈巴尔虎旗| 福清市| 鹰潭市| 建阳市| 斗六市| 建阳市| 山阴县| 汉沽区| 宜都市| 山丹县| 萝北县| 江川县| 游戏| 淮阳县|