# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
257769 | updown1 | Mate (COCI18_mate) | C++17 | 674 ms | 30200 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
Code by @marlov
*/
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <utility>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <stack>
#include <queue>
#include <iterator>
using namespace std;
typedef long long ll;
typedef pair<long long,long long> pi;
#define maxV 2005
#define MOD 1000000007
string s;
long long Q;
long long pc[maxV][maxV];
long long dp[maxV][26];
vector<int> indices[26];
int main() {
ios_base::sync_with_stdio(0); cin.tie(0);
//ofstream cout("Math.out");
cin>>s;
cin>>Q;
for(long long i=0;i<maxV;i++){
pc[i][0]=1;
for(long long j=1;j<i;j++){
pc[i][j]=pc[i-1][j]+pc[i-1][j-1];
pc[i][j]%=MOD;
}
pc[i][i]=1;
}
for(long long i=0;i<26;i++){
for(long long j=s.length()-1;j>=0;j--){
if(s[j]=='a'+i){
dp[j][i]++;
}
if(j<s.length()-1){
dp[j][i]+=dp[j+1][i];
}
}
}
for (int j=0; j<s.length()-1; j++) {
indices[s[j] - 'a'].push_back(j);
}
long long tl;
char fc,sc;
for(long long i=0;i<Q;i++){
long long result=0;
cin>>tl>>fc>>sc;
//for(long long j=tl-2;j<s.length()-1;j++){
for (int j: indices[fc-'a'])
//if(s[j]==fc){
if (j >= tl-2) {
result+=pc[j][tl-2]*(dp[j+1][sc-'a']);
result%=MOD;
}
//}
cout<<result<<'\n';
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |