QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#243398 | #5403. 树数术 | hhhgjy | 100 ✓ | 711ms | 368192kb | C++14 | 3.6kb | 2023-11-08 10:03:57 | 2023-11-08 10:03:58 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define gc (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 65536, stdin), p1 == p2) ? EOF : *p1 ++)
#define getchar() p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1000000, stdin), p1 == p2) ? EOF : *p1++
#define putchar(x) (p3 - obuf < 1000000) ? (*p3++ = x) : (fwrite(obuf, p3 - obuf, 1, stdout), p3 = obuf, *p3++ = x)
using namespace std;
static char buf[29999999], *p1 = buf, *p2 = buf, obuf[29999999], *p3 = obuf;
template <typename item>
inline void read (register item &x) {
x = 0;
register char c = getchar();
while (c < '0' || c > '9') c = getchar();
while (c >= '0' && c <= '9') x = (x << 3) + (x << 1) + (c ^ 48), c = getchar();
}
static char cc[15];
template <typename item>
inline void print (register item x) {
register int len = 0;
do cc[len++] = x % 10 + '0', x /= 10; while (x);
while (len--) putchar(cc[len]);
}
int N,M,Q,Log[700005],A[700005],in[700005],out[700005],tot1,lef[700005],q[700005],tail;
int mn[20][700005],mx[20][700005];
int getmin(int l,int r){
int len=Log[r-l+1];
return min(mn[len][l],mn[len][r-(1<<len)+1]);
}
int getmax(int l,int r){
int len=Log[r-l+1];
return max(mx[len][l],mx[len][r-(1<<len)+1]);
}
int getpos1(int l,int r,int v){
if(getmin(l,r)>v)return 0;
int pl=l,pr=r,ans=0;
while(pl<=pr){
int mid=pl+pr>>1;
if(getmin(l,mid)<=v)ans=mid,pr=mid-1;
else pl=mid+1;
} return ans;
}
int getpos2(int l,int r,int v){
if(getmax(l,r)<v)return 0;
int pl=l,pr=r,ans=0;
while(pl<=pr){
int mid=pl+pr>>1;
if(getmax(l,mid)>=v)ans=mid,pr=mid-1;
else pl=mid+1;
} return ans;
}
vector<int>road[700005];
void dfs(int u,int fa){
in[u]=out[u]=++tot1;
for(int v:road[u]){
if(v==fa)continue;
dfs(v,u);out[u]=out[v];
}
}
int rt[700005],tot,son[20000005][2],cnt[20000005];
void ins(int &p,int q,int l,int r,int pos){
p=++tot;son[p][0]=son[q][0],son[p][1]=son[q][1],cnt[p]=cnt[q]+1;
if(l==r)return;int mid=l+r>>1;
if(pos<=mid)ins(son[p][0],son[q][0],l,mid,pos);
else ins(son[p][1],son[q][1],mid+1,r,pos);
}
int query(int p,int q,int l,int r,int a,int b){
if(a<=l&&r<=b)return cnt[p]-cnt[q];int mid=l+r>>1,res=0;
if(a<=mid)res+=query(son[p][0],son[q][0],l,mid,a,b);
if(b>mid)res+=query(son[p][1],son[q][1],mid+1,r,a,b);
return res;
}
int tot2,L[7000005],R[7000005];
int main(){
read(N),read(M),read(Q);
for(int i=1;i<N;++i){
int u,v;read(u),read(v);
road[u].push_back(v);road[v].push_back(u);
} dfs(1,-1);
for(int i=2;i<=M;++i)Log[i]=Log[i>>1]+1;
for(int i=1;i<=M;++i){
read(A[i]);
while(tail&&in[A[q[tail]]]>=in[A[i]])--tail;
lef[i]=q[tail];q[++tail]=i;
}tail=0;
for(int i=1;i<=M;++i){
while(tail&&out[A[q[tail]]]<=out[A[i]])--tail;
lef[i]=max(lef[i],q[tail]);q[++tail]=i;++lef[i];
}
for(int i=1;i<=M;++i)ins(rt[i],rt[i-1],1,M,lef[i]),mn[0][i]=in[A[i]],mx[0][i]=out[A[i]];
for(int j=1;(1<<j)<=M;++j)for(int i=1;i+(1<<j)-1<=M;++i)mn[j][i]=min(mn[j-1][i],mn[j-1][i+(1<<j-1)]),mx[j][i]=max(mx[j-1][i],mx[j-1][i+(1<<j-1)]);
while(Q--){
read(tot2);
for(int i=1;i<=tot2;++i)read(L[i]),read(R[i]);
int Mn=0,Mx=0;ll res=0;
for(int i=1;i<=tot2;++i){
if(i==1){
res+=1ll*query(rt[R[i]],rt[L[i]-1],1,M,1,L[i]);
Mn=getmin(L[i],R[i]);Mx=getmax(L[i],R[i]);
continue;
}
int pos1=getpos1(L[i],R[i],Mn);
int pos2=getpos2(L[i],R[i],Mx);
if(!pos1||!pos2){
Mn=min(Mn,getmin(L[i],R[i]));
Mx=max(Mx,getmax(L[i],R[i]));
continue;
} pos1=max(pos1,pos2);
res+=1ll*query(rt[R[i]],rt[pos1-1],1,M,1,L[i]);
Mn=min(Mn,getmin(L[i],R[i])),Mx=max(Mx,getmax(L[i],R[i]));
} print(res); putchar('\n');
} fwrite(obuf,p3-obuf,1,stdout);
return 0;
}
詳細信息
Subtask #1:
score: 10
Accepted
Test #1:
score: 10
Accepted
time: 557ms
memory: 368192kb
input:
699990 699995 233333 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50...
output:
121987 139520 87432 42773 311773 194269 177810 454211 417130 299450 366103 227736 186417 163975 292497 216139 401719 16634 192685 27351 52127 54938 142169 275076 339876 117003 51132 229206 187647 350043 398455 83905 100490 338070 356664 60211 366172 142627 16903 222331 471095 184145 170758 238393 14...
result:
ok 233333 lines
Subtask #2:
score: 20
Accepted
Test #2:
score: 20
Accepted
time: 560ms
memory: 357712kb
input:
699992 699994 699992 2 1 3 1 4 3 5 3 6 5 7 5 8 7 9 7 10 9 11 9 12 11 13 11 14 13 15 13 16 15 17 15 18 17 19 17 20 19 21 19 22 21 23 21 24 23 25 23 26 25 27 25 28 27 29 27 30 29 31 29 32 31 33 31 34 33 35 33 36 35 37 35 38 37 39 37 40 39 41 39 42 41 43 40 44 43 45 43 46 45 47 45 48 47 49 47 50 49 51 ...
output:
211594 160846 176729 128251 32662 70710 74884 9095 68282 91324 154262 24279 31878 173468 75265 139715 91660 87525 194302 16875 81535 172911 29145 20483 151883 5255 9548 58890 38076 94152 14358 74859 48870 23981 41390 60976 13795 125823 427 26641 130620 174231 73241 55291 2364 78864 23391 4866 36002 ...
result:
ok 699992 lines
Subtask #3:
score: 30
Accepted
Test #3:
score: 30
Accepted
time: 63ms
memory: 133048kb
input:
99998 99993 33333 2 1 3 1 4 3 5 3 6 5 7 5 8 7 9 7 10 9 11 9 12 11 13 11 14 13 15 13 16 15 17 15 18 17 19 17 20 19 21 19 22 21 23 21 24 23 25 23 26 25 27 25 28 27 29 27 30 29 31 24 32 31 33 31 34 33 35 33 36 35 37 35 38 37 39 37 40 39 41 39 42 41 43 41 44 43 45 43 46 45 47 45 48 47 49 47 50 49 51 49 ...
output:
9733 11330 8403 5136 22207 23231 12686 27288 23739 20937 18153 16379 8991 14036 11669 14685 20272 18955 21680 7927 21383 23576 14834 5714 15707 10013 7905 13254 13883 10446 16140 16796 11009 11912 15761 20419 11157 12192 14327 18260 19095 5239 4114 16522 7412 5005 16844 8747 19377 22600 12023 9161 9...
result:
ok 33333 lines
Subtask #4:
score: 40
Accepted
Dependency #1:
100%
Accepted
Dependency #2:
100%
Accepted
Dependency #3:
100%
Accepted
Test #4:
score: 40
Accepted
time: 711ms
memory: 359960kb
input:
699991 700000 233333 2 1 3 1 4 3 5 3 6 5 7 5 8 7 9 7 10 9 11 9 12 11 13 11 14 13 15 13 16 15 17 15 18 17 19 17 20 19 21 19 22 21 23 21 24 23 25 23 26 25 27 25 28 27 29 27 30 29 31 29 32 31 33 31 34 33 35 33 36 35 37 35 38 37 39 37 40 39 41 39 42 41 43 41 44 43 45 43 46 45 47 45 48 47 49 47 50 49 51 ...
output:
129494 81962 52243 146978 53574 96058 72866 34286 184144 65111 77323 90610 168465 55995 66592 60741 118767 119126 150909 50321 114540 119576 122486 84546 19256 4585 22720 133448 124662 148500 173817 100034 135869 88299 68523 62880 73171 139874 90190 100601 100854 137709 106869 126901 40873 93249 136...
result:
ok 233333 lines