zoukankan      html  css  js  c++  java
  • HDU 3461

    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 1 1 1 2 1 1 2
     
    Sample Output
    1 26
     
    大致题意:
      一个密码锁上有编号为1到N的N个字母,每个字母可以取26个小写英文字母中的一个。
      再给你M个区间[L,M],表示该区间的字母可以一起同步“增加”(从'a'变为'b'为增1,'z'增1为'a')。
      假如一组密码按照给定的区间进行有限次的“增加”操作后可以变成另一组密码,那么我们认为这两组密码是相同的。
      该题的目标就是在给定N、M和M个区间的前提下计算有多少种不同的密码。
    解题思路:
      根据题意,如果一个可调整的区间都没有的话,答案应该是26的N次方。
      每当加入一个区间的时候,答案就减少为之前的26分之1(因为该区间的加入使得原本不同的26种情况变得等价了)。
      因此当有x个“不同的”区间加入进来之后,答案应该为26^(N-x)。
      最后在求26^(N-x)时需要用到两分快速幂;(某大神的代码一览);
     1 #include <cstdio>
     2 #include <iostream>
     3 using namespace std;
     4 const int mod=1000000007;
     5 int f[10000005];
     6 int sf(int x){return x==f[x]? x: f[x]=sf(f[x]);}
     7 int Union(int x,int y){
     8     x=sf(x),y=sf(y);
     9     if(x==y) return 0;
    10     return f[x]=y,1;
    11 }
    12 long long power(int x){
    13     if(x==0) return 1;
    14     long long t=power(x/2);
    15     t=t*t%mod;
    16     if(x%2==1)t=t*26%mod;
    17     return t;
    18 }
    19 int main(){
    20     int n,m;
    21     while(~scanf("%d%d",&n,&m)){
    22         for(int i=1;i<=n+2;i++) f[i]=i;
    23         int a,b,ans=0;
    24         for(int i=1;i<=m;i++){
    25             scanf("%d%d",&a,&b);
    26             ans+=Union(a,b+1);
    27         } printf("%lld
    ",power(n-ans));
    28     }
    29 }
    我自倾杯,君且随意
  • 相关阅读:
    JAVA识别字符串是数字(英文)还是汉字,web页面进行字符截断的帮助类
    linux不解压超大日志gz包直接查找特定内容
    Caffe学习系列(11):图像数据转换成db(leveldb/lmdb)文件
    Caffe学习系列(10):命令行解析
    Caffe学习系列(9):运行caffe自带的两个简单例子
    Caffe学习系列(8):solver优化方法
    Caffe学习系列(7):solver及其配置
    Caffe学习系列(6):Blob,Layer and Net以及对应配置文件的编写
    Caffe学习系列(5):其它常用层及参数
    Caffe学习系列(4):激活层(Activiation Layers)及参数
  • 原文地址:https://www.cnblogs.com/nicetomeetu/p/5161843.html
Copyright © 2011-2022 走看看