博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Code Lock
阅读量:6503 次
发布时间:2019-06-24

本文共 2302 字,大约阅读时间需要 7 分钟。

Code Lock

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/65536 K (Java/Others)
Total Submission(s): 255 Accepted Submission(s): 114
 
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
/*没有可操作区间的时候是26的n次方,然后多一个可操作区间,就会少26种 每一个不可操作的区间的种类数是26种,就是26^k种答案*/#include
using namespace std;const int mod=1000000007;int n,m;int l,r;int x,y;int bin[10000005];int findx(int x){ int temp=x; while(x!=bin[x]){ x=bin[x]; } bin[temp]=x; return x;}int Union(int x,int y){ int fx=findx(x); int fy=findx(y); if(fx!=fy){ bin[fy]=fx; return 1; }else return 0;}/***********快速幂模板**************/long long power(int n,int x){ if(x==0) return 1; long long t=power(n,x/2); t=t*t%mod; if(x%2==1)t=t*n%mod; return t;}/***********快速幂模板**************/int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF){ for(int i=0;i<=n+2;i++){ bin[i]=i; } int ans=0; for(int i=0;i

 

转载于:https://www.cnblogs.com/wuwangchuxin0924/p/6188707.html

你可能感兴趣的文章
运行PHP出现No input file specified错误解决办法
查看>>
【重建】从FJOI2016一试谈起
查看>>
selenium之frame操作
查看>>
php 引入其他文件中的变量
查看>>
MYSQL体系结构-来自期刊
查看>>
mysql的基本知识
查看>>
exchange 2003配置ASSP 反垃圾邮件
查看>>
webpack入门(二)what is webpack
查看>>
UnitOfWork以及其在ABP中的应用
查看>>
学习C语言必须知道的理论知识(第一章)
查看>>
for语句内嵌例题与个人理解
查看>>
眠眠interview Question
查看>>
[转]CSS hack大全&详解
查看>>
RPC-client异步收发核心细节?
查看>>
#define WIN32_LEAN_AND_MEAN 的作用
查看>>
仿余额宝数字跳动效果 TextCounter
查看>>
(10)Spring Boot修改端口号【从零开始学Spring Boot】
查看>>
Ubuntu16.04安装qt
查看>>
顶部滑动下拉广告
查看>>
简化代码的微小修改
查看>>