# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1002314 |
2024-06-19T12:24:45 Z |
vjudge1 |
Dabbeh (INOI20_dabbeh) |
C++17 |
|
2000 ms |
45040 KB |
#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define ll long long
#define pii pair<int, int>
#define all(v) v.begin(), v.end()
#define oo 1e9
const int MAX = 5e5 + 5, B = 61, MOD = 1e9 + 7, LOGMAX = 21;
struct ST{
pii tree[4 * MAX];
void init(){
for(int i = 0; i < 4 * MAX; i++) tree[i] = {0, 0};
}
void update(int node, int l, int r, int pos, pii val){
if(l == r){
tree[node] = val;
return;
}
int mid = (l + r) / 2;
if(pos <= mid) update(2 * node, l, mid, pos, val);
else update(2 * node + 1, mid + 1, r, pos, val);
tree[node] = max(tree[2 * node], tree[2 * node + 1]);
}
pii ask(int node, int l, int r, int ql, int qr){
if(qr < l || r < ql) return {0, 0};
if(ql <= l && r <= qr) return tree[node];
int mid = (l + r) / 2;
return max(ask(2 * node, l, mid, ql, qr), ask(2 * node + 1, mid + 1, r, ql, qr));
}
};
int binpow(int a, int b, int m){
if(b == 0) return 1;
if(b & 1) return 1ll * binpow(a, b - 1, m) % m * a % m;
return 1ll * binpow(1ll * a * a % m, b / 2, m) % m;
}
int inv(int a, int m){
return binpow(a, m - 2, m);
}
int n, q;
string s;
string t[MAX];
vector<int> mp;
ll pre[MAX];
ll P[(int)5e5 + 5];
ll invP[(int)5e5 + 5];
ST st;
int par[LOGMAX][MAX];
int nxt[MAX];
int calc(int l, int r){
return (pre[r] - pre[l - 1] + MOD) % MOD * invP[l - 1] % MOD;
}
void solve(){
P[0]= 1;
invP[0] = 1;
for(int i = 1; i <= 5e5; i++){
P[i] = 1ll * P[i - 1] * B % MOD;
invP[i] = 1ll * invP[i - 1] * inv(B, MOD) % MOD;
}
cin >> n >> q;
for(int i = 1; i <= n; i++){
cin >> t[i];
int H = 0;
for(int j = 0; j < t[i].size(); j++){
H = (H + (t[i][j] - 'a' + 1) * P[j] % MOD) % MOD;
mp.push_back(H);
}
}
cin >> s;
n = s.size();
for(int i = 1; i <= n; i++){
pre[i] = (pre[i - 1] + (s[i - 1] - 'a' + 1) * P[i - 1] % MOD) % MOD;
}
st.init();
st.update(1, 1, n + 1, n + 1, {n + 1, n + 1});
par[0][n + 1] = n + 1;
nxt[n + 1] = n + 1;
for(int i = n; i >= 1; i--){
if(find(mp.begin(), mp.end(), calc(i, i)) == mp.end()){
par[0][i] = i;
nxt[i] = i;
st.update(1, 1, n + 1, i, {i, i});
continue;
}
int l = i, r = n;
while(l < r){
int mid = (l + r + 1) / 2;
if(find(mp.begin(), mp.end(), calc(i, mid)) != mp.end()) l = mid;
else r = mid - 1;
}
par[0][i] = st.ask(1, 1, n + 1, i + 1, l + 1).second;
nxt[i] = l + 1;
st.update(1, 1, n + 1, i, {l + 1, i});
}
for(int j = 1; j < LOGMAX; j++){
for(int i = 1; i <= n + 1; i++){
par[j][i] = par[j - 1][par[j - 1][i]];
}
}
while(q--){
int l, r; cin >> l >> r;
l++;
if(nxt[l] > r){
cout << "1\n";
continue;
}
ll ans = 0;
for(int i = LOGMAX - 1; i >= 0; i--){
if(nxt[par[i][l]] <= r){
ans += (1ll << i);
l = par[i][l];
}
}
if(nxt[par[0][l]] <= r) cout << "-1\n";
else cout << ans + 2 << '\n';
}
}
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
while(t--){
solve();
}
}
Compilation message
Main.cpp: In function 'void solve()':
Main.cpp:68:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
68 | for(int j = 0; j < t[i].size(); j++){
| ~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
178 ms |
39576 KB |
Output is correct |
2 |
Correct |
265 ms |
44584 KB |
Output is correct |
3 |
Correct |
360 ms |
44260 KB |
Output is correct |
4 |
Incorrect |
453 ms |
45040 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2027 ms |
43844 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
178 ms |
39576 KB |
Output is correct |
2 |
Correct |
265 ms |
44584 KB |
Output is correct |
3 |
Correct |
360 ms |
44260 KB |
Output is correct |
4 |
Incorrect |
453 ms |
45040 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |