hdu 2609 How many (最小表示法)

Posted acerkoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2609 How many (最小表示法)相关的知识,希望对你有一定的参考价值。

题意

\(n\) 个循环串,求本质不同串的数量

传送门

思路

最小表示法求下标,从最小下标处作为串的起点,将新串放到map中去重,最终map中的元素数量即为最终答案。

最小/大表示法

Code

#include <cstdio>
#include <cstring>
#include <map>
#include <string>

using namespace std;

const int maxn = 1e6+10;

int n, l;
char str[maxn<<1];

int solve(int op)   // 0: 最小表示法, 1:最大表示法
    strncpy(str+l, str, l);
    int i = 0, j = 1;
    while(i < l && j < l) 
        int k = 0;
        while(k < l && str[i+k] == str[j+k]) ++k;
        if(k >= l) break;
        if((str[i+k] > str[j+k]) ^ op) i += k+1;
        else j += k+1;
        if(i == j) ++j;
    
    return i < j ? i : j;


int main() 
    while(scanf("%d", &n)==1) 
        map<string, bool> mp;
        int ans = 0;
        for (int i = 1; i <= n; ++i) 
            scanf("%s", str);
            l = strlen(str);
            int mi = solve(0);
            string tmp = "";
            for (int i = 0; i < l; ++i)
                tmp += str[(mi+i)%l];
            if(!mp.count(tmp)) 
                ++ans;
                mp[tmp] = 1;
            
        
        printf("%d\n", ans);
    
    return 0;

以上是关于hdu 2609 How many (最小表示法)的主要内容,如果未能解决你的问题,请参考以下文章

HDU - 2609 - How many

hdu-2609 How many---最小表示法模板+set判重

HDU 2609 How Many

随手练——HUD 2609 How many

hdu2609 How many

HDU 1796 How many integers can you find (容斥)