FBI please teach meee. i will give you a gift then.
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | adamant | 152 |
| 3 | Proof_by_QED | 146 |
| 3 | Um_nik | 146 |
| 5 | Dominater069 | 144 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
FBI please teach meee. i will give you a gift then.
FBI is such a prooo. But im better :()()()()()() i am his COACH
i don't know. Please help me what they do FBI
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;cin>>s;
int n=s.size();
vector<vector<int>>dp(n,vector<int>(18));
for(int i=0;i<n;i++)
{
dp[i][0]=(1<<(s[i]-'a'));
}
for(int k=1;k<18;k++)
{
for(int i=0;i+(1<<k)-1<n;i++)
{
dp[i][k]=(dp[i][k-1]|dp[i+(1<<(k-1))][k-1]);
}
}
auto get=[&](int l,int r)
{
int k=31-__builtin_clz(r-l+1);
int x=(dp[l][k]|dp[r-(1<<k)+1][k]);
return __builtin_popcount(x);
};
int q;cin>>q;
while(q--)
{
int l,r;cin>>l>>r;
cout<<get(l-1,r-1)<<endl;
}
}
| Name |
|---|


