제출 #297613

#제출 시각아이디문제언어결과실행 시간메모리
297613HeheheMate (COCI18_mate)C++14
100 / 100
1815 ms26744 KiB
#include<bits/stdc++.h> //:3 #define DIM 2010 #define MOD 1000000007 using namespace std; //ifstream cin ("date.in"); //ofstream cout ("date.out"); int v[DIM],c[DIM][DIM],f[DIM],dp[DIM][30][30],a[DIM][30]; char l1,l2; int n,i,j,x,y,q,lg; int main (){ string s; cin >> s; n = s.size(); for (i=1;i<=n;i++) v[i] = s[i - 1] - 'a' + 1; c[0][0] = c[1][0] = c[1][1] = 1; for (i=2;i<=n;i++){ c[i][0] = 1; for (j=1;j<=i;j++){ c[i][j] = c[i-1][j] + c[i-1][j-1]; if (c[i][j] >= MOD) c[i][j] -= MOD; }} /// a[i][x] - in cate moduri pot selecta s[i],j (am nevoie sa stiu pozitia primului) for (i=1;i<=n;i++) for (j=i+1;j<=n;j++) a[i][v[j]]++; /// dp[i][x][y] - cate siruri de lungime i care se termina cu xy pot obtine for (lg=2;lg<=n;lg++){ for (i=lg-1;i<=n;i++){ x = v[i]; for (y=1;y<=26;y++){ dp[lg][x][y] = dp[lg][x][y]+1LL*a[i][y]*c[i-1][lg-2]%MOD; if (dp[lg][x][y] >= MOD) dp[lg][x][y] -= MOD; }}} cin >> q; for (;q--;){ cin >> lg >> l1 >> l2; cout << dp[lg][l1-'a'+1][l2-'a'+1] << '\n'; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...