Submission #257036

#TimeUsernameProblemLanguageResultExecution timeMemory
257036MarlovMate (COCI18_mate)C++14
20 / 100
1721 ms19512 KiB
/* 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<int,int> pi; #define maxV 2005 #define MOD 1000000007 string s; int Q; int pc[maxV][maxV]; int dp[maxV][26]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin>>s; cin>>Q; for(int i=0;i<maxV;i++){ pc[i][0]=1; for(int 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(int i=0;i<26;i++){ for(int 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]; } } } int tl; char fc,sc; for(int i=0;i<Q;i++){ int result=0; cin>>tl>>fc>>sc; for(int j=tl-2;j<s.length()-1;j++){ if(s[j]==fc){ result+=pc[j][tl-2]*(dp[j+1][sc-'a']); result%=MOD; } } cout<<result<<'\n'; } return 0; } /* malimateodmameitate 3 10 ot 7 aa 3 me */ /* stuff you should look for * int overflow, array bounds * special cases (n=1,n=0?) * do smth instead of nothing and stay organized */

Compilation message (stderr)

mate.cpp: In function 'int main()':
mate.cpp:50:8: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    if(j<s.length()-1){
       ~^~~~~~~~~~~~~
mate.cpp:60:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j=tl-2;j<s.length()-1;j++){
                  ~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...