# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
646681 | Vanilla | Sum Zero (RMI20_sumzero) | C++17 | 1078 ms | 21420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long int64;
const int maxn = 4e5 + 5;
const int lg = 8;
unordered_map <int64, int> ps;
vector <int> jump [lg];
int main() {
ios::sync_with_stdio(0);cin.tie(0);
ps[0] = 0;
int n;
cin >> n;
int64 s = 0, a = 0;
for (int i = 0; i < lg; i++) jump[i].push_back(0);
for (int i = 1; i <= n; i++) jump[0].push_back(n + 1);
for (int i = 1; i <= n; i++){
cin >> a;
s+=a;
if (ps.count(s)) {
jump[0][ps[s] + 1] = i;
}
ps[s] = i;
}
for (int i = n - 1; i >= 1; i--){
jump[0][i] = min(jump[0][i], jump[0][i + 1]);
}
for (int k = 1; k < lg; k++){
for (int i = 1; i < jump[k-1].size(); i++){
int p1 = jump[k-1][i] + 1;
if (p1 >= jump[k-1].size()) break;
jump[k].push_back(jump[k-1][p1]);
}
}
// for (int i = 0; i < lg; i++){
// cout << i << ": ";
// for (int j: jump[i]) {
// cout << j << " ";
// }
// cout << "\n";
// }
int q;
cin >> q;
while (q--) {
int l, r;
cin >> l >> r;
int rs = 0;
for (int i = lg - 1; i >= 0; i--){
while (jump[i].size() > l && jump[i][l] <= r) {
// cerr << i << " " << l << "\n";
rs+=(1 << i);
l = jump[i][l] + 1;
}
}
cout << rs << "\n";
};
}
컴파일 시 표준 에러 (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... |