# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1136178 | BuiDucManh123 | Sum Zero (RMI20_sumzero) | C++20 | 3 ms | 3648 KiB |
#include <bits/stdc++.h>
#define fi first
#define se second
#define ll long long
#define pii pair<int, int>
#define pb push_back
#define taskname ""
using namespace std;
const int lg = 20;
int n, i, j, q, ans, l, r;
vector<int> f_prev(400009, -1), f_curr(400009, -1);
ll a[400009];
map<ll, int> compressed;
int main() {
if (fopen(taskname".inp", "r")) {
freopen(taskname".inp", "r", stdin);
freopen(taskname".out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
// Nén giá trị tổng tiền tố
int compressed_idx = 0;
for (i = 1; i <= n; i++) {
cin >> a[i];
a[i] += a[i - 1];
if (compressed.find(a[i]) == compressed.end()) {
compressed[a[i]] = ++compressed_idx;
}
}
vector<int> last_seen(compressed_idx + 1, -1);
for (i = 1; i <= n; i++) {
int cmp_idx = compressed[a[i]];
f_prev[i] = max(last_seen[cmp_idx], f_prev[i - 1]);
last_seen[cmp_idx] = i;
}
for (int k = 1; k < lg; k++) {
for (i = 1; i <= n; i++) {
if (f_prev[i] != -1) {
f_curr[i] = f_prev[f_prev[i]];
} else {
f_curr[i] = -1;
}
}
swap(f_prev, f_curr); // Chuyển sang tầng tiếp theo
}
cin >> q;
while (q--) {
cin >> l >> r;
ans = 0;
for (i = lg - 1; i >= 0; i--) {
if (f_prev[r] >= l - 1) {
ans += (1 << i);
r = f_prev[r];
}
}
cout << ans << "\n";
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |