码迷,mamicode.com
首页 > 其他好文 > 详细

P3498 [POI2010]KOR-Beads

时间:2018-08-13 20:54:53      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:ogr   word   order   region   键值   ==   字符   bar   stand   

题目描述

Byteasar once decided to start manufacturing necklaces.

He subsequently bought a very long string of colourful coral beads for a bargain price.

Byteasar now also has a machine that, for a given 技术分享图片 (技术分享图片), can cut the string into pieces (or substrings) of 技术分享图片 coral beads (i.e., the first piece consists of the beads no.

技术分享图片, the second of 技术分享图片, etc.).

If the length of the string (measured in coral beads) is not a multiple of 技术分享图片, then the last piece is not used, as it has length smaller than 技术分享图片.

From now on we denote the colours of the beads with positive integers.

Byteasar, always praising diversity, wonders how he should choose the number 技术分享图片 in order to get as many different substrings as possible.

The ends of the long string that will be cut are different: there are specific beginning and ending (rather than two interchangeable endpoints), and the machine of course starts cutting at the beginning. On the other hand, in the substrings obtained from cutting the endpoints are interchangeable, and so the substrings can be reversed. In other words, the substrings 技术分享图片 and 技术分享图片 are identical to us. Write a program that determines the optimum value of 技术分享图片 for Byteasar.

Zxl有一次决定制造一条项链,她以非常便宜的价格买了一长条鲜艳的珊瑚珠子,她现在也有一个机器,能把这条珠子切成很多块(子串),每块有k(k>0)个珠子,如果这条珠子的长度不是k的倍数,最后一块小于k的就不要拉(nc真浪费),保证珠子的长度为正整数。 Zxl喜欢多样的项链,为她应该怎样选择数字k来尽可能得到更多的不同的子串感到好奇,子串都是可以反转的,换句话说,子串(1,2,3)和(3,2,1)是一样的。写一个程序,为Zxl决定最适合的k从而获得最多不同的子串。 例如:这一串珠子是: (1,1,1,2,2,2,3,3,3,1,2,3,3,1,2,2,1,3,3,2,1), k=1的时候,我们得到3个不同的子串: (1),(2),(3) k=2的时候,我们得到6个不同的子串: (1,1),(1,2),(2,2),(3,3),(3,1),(2,3) k=3的时候,我们得到5个不同的子串: (1,1,1),(2,2,2),(3,3,3),(1,2,3),(3,1,2) k=4的时候,我们得到5个不同的子串: (1,1,1,2),(2,2,3,3),(3,1,2,3),(3,1,2,2),(1,3,3,2)

输入输出格式

输入格式:

In the first line of the standard input there is an integer 技术分享图片 (技术分享图片) denoting the length of the string to cut.

In the second line there are 技术分享图片 positive integers 技术分享图片 (技术分享图片), separated by single spaces, that denote the colours of successive beads in Byteasar‘s string.

输出格式:

Two integers, separated by a single space, should be printed out to the first line of the standard ouput:

the (maximum) number of different substrings that can be obtained with an optimal choice of parameter 技术分享图片, and the number 技术分享图片 of such optimal values of 技术分享图片.

The second line should contain 技术分享图片 integers separated by single spaces:

the values of parameter 技术分享图片 that yield an optimum solution; these can be given in arbitrary order.

输入输出样例

输入样例#1: 
21
1 1 1 2 2 2 3 3 3 1 2 3 3 1 2 2 1 3 3 2 1
输出样例#1: 
6 1
2

 

Solution:

  本题字符串hash。

  坑点在于子串可以反转,所以正反分别两次对原串hash,然后直接暴力枚举长度,问题出现在判重,想到用正反的hash值乘积做为新的键值,开一个set去重就好了。

代码:

 

 1 #include<bits/stdc++.h>
 2 #define il inline
 3 #define ll long long
 4 #define For(i,a,b) for(int (i)=(a);(i)<=(b);(i)++)
 5 #define Bor(i,a,b) for(int (i)=(b);(i)>=(a);(i)--)
 6 using namespace std;
 7 const int N=200005,P=131,mod=1e9+7;
 8 ll Ha[N],ha[N],sum[N],q,p;
 9 unsigned ll H[N];
10 int n,a[N],tot,ans[N],cnt;
11 set<unsigned ll>vis;
12  
13 il int gi(){
14     int a=0;char x=getchar();
15     while(x<0||x>9)x=getchar();
16     while(x>=0&&x<=9)a=(a<<3)+(a<<1)+x-48,x=getchar();
17     return a;
18 }
19  
20 int main(){
21     n=gi(),sum[0]=1;
22     For(i,1,n) a[i]=gi(),sum[i]=sum[i-1]*P%mod,Ha[i]=(Ha[i-1]*P%mod+a[i])%mod;
23     Bor(i,1,n) ha[i]=(ha[i+1]*P%mod+a[i])%mod;
24     For(k,1,n){
25         for(int i=1;i+k-1<=n;i+=k)
26             q=(Ha[i+k-1]-Ha[i-1]*sum[k]%mod+mod)%mod,
27             p=(ha[i]-ha[i+k]*sum[k]%mod+mod)%mod,
28             vis.insert(p*q);
29         int c=vis.size();
30         if(c>tot)tot=c,ans[cnt=1]=k;
31         else if(c==tot) ans[++cnt]=k;
32         vis.clear();
33     }
34     printf("%d %d\n",tot,cnt);
35     For(i,1,cnt) printf("%d ",ans[i]);
36     return 0;
37 }

 

P3498 [POI2010]KOR-Beads

标签:ogr   word   order   region   键值   ==   字符   bar   stand   

原文地址:https://www.cnblogs.com/five20/p/9470448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!