# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
496682 | Elias | Sum Zero (RMI20_sumzero) | C++17 | 5 ms | 2124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct Range
{
int s, e;
};
signed main()
{
cin.tie(0);
ios_base::sync_with_stdio(false);
int n;
cin >> n;
vector<int> v(n);
int last = 0;
for (int &i : v)
{
cin >> i;
i = last += i;
}
vector<Range> ranges;
map<int, int> brr;
brr[0] = -1;
for (int i = 0; i < n; i++)
{
auto x = brr.find(v[i]);
if (x != brr.end())
ranges.push_back(Range{(*x).second + 1, i});
brr[v[i]] = i;
}
int j = 0;
vector<vector<int>> jump(n + 2, vector<int>(25, n + 1));
jump[n][0] = n + 1;
for (int i = 0; i < n; i++)
{
while (ranges[j].s < i)
if (++j >= ranges.size())
goto exit;
jump[i][0] = ranges[j].e + 1;
}
exit:
for (int j = 1; j < 30; j++)
for (int i = 0; i < n; i++)
jump[i][j] = jump[jump[i][j - 1]][j - 1];
int q;
cin >> q;
while (q--)
{
int a, b;
cin >> a >> b;
a--;
int num = 0;
for (int j = 29; j >= 0; j--)
{
if (jump[a][j] <= b)
{
num += (1 << j);
a = jump[a][j];
}
}
cout << num << "\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... |