HDU3461-Code Lock

来源:互联网 发布:哪个软件有鱼眼效果 编辑:程序博客网 时间:2024/05/01 10:53

Code Lock

                                                                            Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/65536 K (Java/Others)
                                                                                                       Total Submission(s): 1952    Accepted Submission(s): 742

Problem Description
A lock you use has a code system to be opened instead of a key. The lock contains a sequence of wheels. Each wheel has the 26 letters of the English alphabet 'a' through 'z', in order. If you move a wheel up, the letter it shows changes to the next letter in the English alphabet (if it was showing the last letter 'z', then it changes to 'a').
At each operation, you are only allowed to move some specific subsequence of contiguous wheels up. This has the same effect of moving each of the wheels up within the subsequence.
If a lock can change to another after a sequence of operations, we regard them as same lock. Find out how many different locks exist?
 
Input
There are several test cases in the input.

Each test case begin with two integers N (1<=N<=10000000) and M (0<=M<=1000) indicating the length of the code system and the number of legal operations. 
Then M lines follows. Each line contains two integer L and R (1<=L<=R<=N), means an interval [L, R], each time you can choose one interval, move all of the wheels in this interval up.

The input terminates by end of file marker.
 
Output
For each test case, output the answer mod 1000000007
 
Sample Input
1 11 12 11 2
 
Sample Output
126
 
Author
hanshuai
 
Source
2010 ACM-ICPC Multi-University Training Contest(3)——Host by WHU
 
Recommend
zhouzeyong

题意:一个密码锁上有编号为1到N的N个字母,每个字母可以取26个小写英文字母中的一个。再给你M个区间[L,R],表示该区间的字母可以一起同步“增加”(从'a'变为'b'为增1,'z'增1为'a')。假如一组密码按照给定的区间进行有限次的“增加”操作后可以变成另一组密码,那么这两组密码是相同的。该题的目标就是在给定N、M和M个区间的前提下计算有多少种不同的密码。
解题思路:根据题意,如果一个可调整的区间都没有的话,答案应该是26的N次方。每当加入一个区间的时候,答案就减少为之前的26分之1(因为该区间的加入使得原本不同的26种情况变得等价了)。因此当有x个“不同的”区间加入进来之后,答案应该为26^(N-x)。怎么算作一个集合呢?【1,3】+【4,5】==【1,5】 然而【1,3】+【3,5】!=【1,5】前者的关系需要并查集来处理,小区间合并成大区间 而后者不能作为一个大集合出现 最后在求26^(N-x)时需要用到快速幂

#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>#include <iostream>using namespace std;int fa[10000009];int f(int x){    int s=x;    while(fa[x]!=x) x=fa[x];    while(s!=x)    {        int tmp=fa[s];        fa[s]=x;        s=tmp;    }    return x;}int get(int x,int y){    int xx=f(x),yy=f(y);    if(xx==yy) return 0;    else fa[xx]=yy;    return 1;}long long int pow(int x){    long long int sum=1,a=26;    while(x)    {        if(x&1) sum*=a,sum%=1000000007;        x>>=1;        a*=a;        a%=1000000007;    }    return sum;}int main(){    int n,m;    while(~scanf("%d %d",&n,&m))    {        for(int i=0;i<=10000005;i++)            fa[i]=i;        int l,r;        int ans=0;        for(int i=0;i<m;i++)        {            scanf("%d %d",&l,&r);            ans+=get(l,r+1);        }        printf("%lld\n",pow(n-ans));    }    return 0;}

0 0
原创粉丝点击