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

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

poj 3096 Surprising Strings

2019-11-11 02:00:21
字體:
來源:轉載
供稿:網友

題意:

看題目示例領會

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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 西安市| 蓬莱市| 南昌市| 肇源县| 湘乡市| 察隅县| 托克托县| 韶山市| 临汾市| 塔城市| 德清县| 独山县| 沅江市| 昆明市| 鱼台县| 都匀市| 化州市| 富宁县| 分宜县| 南丰县| 垣曲县| 台前县| 金湖县| 西平县| 河池市| 莫力| 和顺县| 芦溪县| 西畴县| 富民县| 新田县| 石狮市| 和林格尔县| 车险| 剑阁县| 延吉市| 景东| 长宁区| 韶山市| 夏邑县| 漾濞|