FBI please teach meee. i will give you a gift then.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
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 |
---|