hdu 2609 How many (最小表示法+map)

小記:這題考驗了我的stl的功底。。。差啊。 不過還好A掉了


思路:對每個串,如果最小表示法相同兩個就是same。 所以我對最小表示法 hash,用map標記。

我這中間涉及了char到string的轉換。我用的是insert


代碼:

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>

using namespace std;

#define mst(a,b) memset(a,b,sizeof(a))
#define REP(a,b,c) for(int a = b; a < c; ++a)
#define eps 10e-8

const int MAX_ = 10010;
const int N = 500000;
const int INF = 0x7fffffff;

char str[MAX_], str1[MAX_];
int hash[MAX_];
int a[MAX_];
map<string, int> mp;

int Minimize(char str[]) {
    int i= 0, j= 1, len, k =0;
    len = strlen(str);
    while(i < len && j < len && k < len) {
        int t = str[(i+k)%len] - str[(j+k)%len];
        if(!t)++k;
        else {
            if(t > 0)i = i+k+1;
            else j = j+ k + 1;
            if(i == j)++j;
            k = 0;
        }
    }
    return i>j?j:i;
}


int main() {
    int T, n, m, numa = 0, numb = 0,ans;
    bool flag = 0;
    string s = "";


    while(~scanf("%d", &T)) {
        ans=0;
        mp.clear();
        while(T--&& scanf("%s", str)) {
            s="";
            int tmp = Minimize(str), len = strlen(str);
            for(int i = tmp, k = 0;  k < len ; ++k,++i) {
                s.insert(s.end(), str[i % len]);
            }
            //cout<<s<<endl;
            if(mp.find(s) == mp.end()) {
                mp[s] = 1;
                ++ans;
            }
        }

        printf("%d\n", ans);
    }
    return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章