# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
859685 | HoriaHaivas | Sum Zero (RMI20_sumzero) | C++14 | 194 ms | 18260 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
"care a facut teste cu Lattice reduction attack e ciudat"
- 2023 -
*/
#include<bits/stdc++.h>
#define debug(x) cerr << #x << " " << x << "\n"
#define debugs(x) cerr << #x << " " << x << " "
#pragma GCC optimize("Ofast")
using namespace std;
struct secv
{
int l;
int r;
int nodeval;
};
struct cmp
{
bool operator()(secv a, secv b)
{
return a.r>b.r;
}
};
bool cmp2 (secv a, secv b)
{
return a.l<b.l;
}
int v[200005];
long long sp[200005];
map<long long,int> last;
secv perechi[300005];
int up[11][200005];
int firstseq[200005];
int pw[11];
int main()
{
ifstream fin("secvp.in");
ofstream fout("secvp.out");
ios_base::sync_with_stdio(false);
cin.tie();
cout.tie();
int n,q,i,j,k,cnt,best,it,mi,a,b,r,pas,node,nxt;
cin >> n;
for (j=1; j<=n; j++)
{
cin >> v[j];
sp[j]=sp[j-1]+v[j];
}
cnt=0;
for (j=1; j<=n; j++)
{
if (sp[j]==0)
{
cnt++;
perechi[cnt].l=last[sp[j]]+1;
perechi[cnt].r=j;
}
else
{
if (last[sp[j]]!=0)
{
cnt++;
perechi[cnt].l=last[sp[j]]+1;
perechi[cnt].r=j;
}
}
last[sp[j]]=j;
}
sort(perechi+1,perechi+1+cnt,cmp2);
for (j=1; j<=cnt; j++)
perechi[j].nodeval=j;
perechi[0].l=n+1;
perechi[0].r=n+1;
perechi[0].nodeval=0;
it=cnt;
best=0;
for (j=n; j>=1; j--)
{
if (perechi[it].l==j)
{
if (perechi[it].r<perechi[best].r)
{
best=it;
}
it--;
}
firstseq[j]=best;
/*
debugs(j);
debug(firstseq[j]);
*/
}
for (j=1; j<=cnt; j++)
{
up[0][j]=firstseq[perechi[j].r+1];
}
pw[0]=1;
for (j=1; j<=10; j++)
{
pw[j]=pw[j-1]*4;
}
for (j=1; j<=10; j++)
{
for (i=1; i<=cnt; i++)
{
up[j][i]=up[j-1][up[j-1][up[j-1][up[j-1][i]]]];
}
}
cin >> q;
for (j=1; j<=q; j++)
{
cin >> a >> b;
r=0;
pas=10;
node=firstseq[a];
while (pas>=0)
{
nxt=up[pas][up[pas][up[pas][node]]];
if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b)
{
r+=pw[pas]*3;
node=nxt;
}
else
{
nxt=up[pas][up[pas][node]];
if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b)
{
r+=pw[pas]*2;
node=nxt;
}
else
{
nxt=up[pas][node];
if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b)
{
r+=pw[pas];
node=nxt;
}
}
}
pas--;
}
if (perechi[node].nodeval!=0 && perechi[node].r<=b)
cout << r+1 << "\n";
else
cout << 0 << "\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... |