Codeforces Round #411(Div.2) D. Minimum number of steps [사고 추이 + 빠른 멱]
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab"in the string and replace it with the string "bba". If we have no "ab"as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109 + 7.
The string "ab"appears as a substring if there is a letter 'b' right after the letter 'a' somewhere in the string.
Input
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Output
Print the minimum number of steps modulo 109 + 7.
Examples
input
ab
output
1
input
aab
output
3
Note
The first example: "ab" → "bba".
The second example: "aab" → "abba" → "bbaba" → "bbbbaa".
제목 대의:
a, b 두 자모만 포함하는 문자열을 드리겠습니다. 만약 연속 문자열이 ab이면 bba로 바꿀 수 있습니다.이 주어진 문자열을 몇 번 조작한 후에 다시 조작할 수 없는지 계산해 보라고 합니다.
아이디어:
최종 문자열은 반드시 bbbbbb가 될 것이다......aaaa..............
그래서 앞의 a는 누적된 것이다.
저희가 ab를 관찰했는데 정답이 1이에요.
aab 정답은 3.
aaab 정답은 7.
그러면 b 앞에 n개의 a가 있으면 이 b는 2^n-1회 조작에 기여합니다.
abab 정답은 4 = 1 + 3.
그러면 앞의 a.를 누적하여 b를 만나면 2^n-1을 더하면 된다.
Ac 코드:
#include
#include
using namespace std;
#define ll __int64
#define mod 1000000007
char a[1000800];
ll poww(ll a,ll b)
{
ll tmp=a%mod;
ll ans=1;
ll n=b;
while(n)
{
if(n%2==1)
{
ans=(ans*tmp)%mod;
n-=1;
}
else
{
tmp=(tmp*tmp)%mod;
n/=2;
}
}
return ans;
}
int main()
{
while(~scanf("%s",a))
{
ll cnt=0;
ll output=0;
ll n=strlen(a);
for(ll i=0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
codeforce 991E(조합수 반복 검색)제목 링크: 링크 열기 클릭 샤오밍이 헷갈릴 때 본 자동차 번호판 숫자를 실제 숫자와 비교해 보자. ① 실제로 나온 숫자는 샤오밍이 다 봤다 ② 샤오밍은 같은 숫자만 보고 적을 수는 없다 ③ 차량 번호는 전도 제로가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.