QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#645666 | #7434. 冷たい部屋、一人 | AllenJYL | WA | 941ms | 116504kb | C++14 | 7.7kb | 2024-10-16 19:23:04 | 2024-10-16 19:23:11 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
// #define int long long
#define ls (p<<1)
#define rs (p<<1|1)
#define mid ((l+r)>>1)
#define all(_array) (_array).begin(),(_array).end()
#define msp(_array) memset(_array,0x3f,sizeof _array)
#define ms0(_array) memset(_array,0,sizeof _array)
#define msn(_array) memset(_array,-1,sizeof _array)
#define mc(_tar,_array) memcpy(_tar,_array,sizeof _tar)
#define Yes cout<<"Yes"<<endl
#define No cout<<"No"<<endl
#define YES cout<<"YES"<<endl
#define NO cout<<"NO"<<endl
#define TAK cout<<"TAK"<<endl
#define NIE cout<<"NIE"<<endl
#define OK cerr<<"OK"<<endl
#define pii pair<int,int>
#define endl '\n'
bool bg_memory;
const int mod=1e9+7;
const int inf=2147483647;
const int bs=233;
const double eps=1e-6;
const int N=5e5+7;
template<class _t1,class _t2>inline void cmax(_t1 &a,_t2 b){a=a<b?b:a;}
template<class _t1,class _t2>inline void cmin(_t1 &a,_t2 b){a=a>b?b:a;}
inline int qp(int a,int b){int res=1;while(b){if(b&1)res=1ll*res*a%mod;a=1ll*a*a%mod;b>>=1;}return res;}
inline int sqrt(int x,int r){int l=0,ans=0;while(l<=r){if(1ll*mid*mid<=x) ans=mid,l=mid+1;else r=mid-1;}return ans;}
int n,m,b,l,r,bbl;
int L[N],R[N],tl[N],tr[N],p[N];
int a[N],y[N];
int mn[N][19],mx[N][19];
int lg[N];
int ap[N];
vector<int> vd[N];
int cnt;
inline int gmin(int x,int y){return min(mn[x][lg[y-x+1]],mn[y-(1<<lg[y-x+1])+1][lg[y-x+1]]);}
inline int gmax(int x,int y){return max(mx[x][lg[y-x+1]],mx[y-(1<<lg[y-x+1])+1][lg[y-x+1]]);}
vector<pair<pii,pii>> add[N];
int val[N],bl[710],onbl[N],bgbl[710],enbl[710],bsz;
vector<pii> q[N];
long long ans[N];
int nm[N],nt,pos[N];
int tsl[N],tsr[N];
int o[N],ont;
bool on[N];
struct dsu{
int to[N],cnt[N],sum;
stack<pair<pii,int>> st;
inline void flsh(){
while(st.size()) st.pop();
sum=0;
for(int i=1;i<=nt+1;i++) to[i]=cnt[i]=0;
}
inline void reverse(){
while(st.size()){
int x=st.top().first.first;
int y=st.top().first.second;
int z=st.top().second;
st.pop();
to[z]=x;
cnt[z]=y;
}
}
}dsu;
inline void addin(int x,bool p){
o[++ont]=x;
nm[++nt]=x,on[nt]=p;
}
inline void ad(int x,int o){
int l=pos[x],r=pos[x];
int val=on[pos[x]];
if(dsu.to[pos[x]+1]){
r=dsu.to[pos[x]+1];
dsu.sum-=dsu.cnt[pos[x]+1]*(dsu.cnt[pos[x]+1]-1)/2;
val+=dsu.cnt[pos[x]+1];
}
if(dsu.to[pos[x]-1]){
l=dsu.to[pos[x]-1];
dsu.sum-=dsu.cnt[l]*(dsu.cnt[l]-1)/2;
val+=dsu.cnt[l];
}
dsu.sum+=val*(val-1)/2;
if(o) dsu.st.push({{dsu.to[l],dsu.cnt[l]},l});
dsu.to[l]=r,dsu.cnt[l]=val;
if(o) dsu.st.push({{dsu.to[r],dsu.cnt[r]},r});
dsu.to[r]=l;
}
inline void upd(int i,int x){
l=x;
while(r<tr[i]) ad(++r,0);
int tmp=dsu.sum;
while(l>tl[i]) ad(--l,1);
ans[i]+=dsu.sum;
dsu.reverse();
dsu.sum=tmp;
}
mt19937 rnd(time(0));
int Case=1;
void Main(){
cin>>n>>m;
b=12000;
bsz=sqrt(n);
for(int i=1;i<=m;i++) tsl[i]=tsr[i]=i;
for(int i=1;i<=n;i++) cin>>a[i],ap[a[i]]++;
for(int i=1;i<=n;i++) cin>>y[i],mn[i][0]=mx[i][0]=y[i];
for(int i=1;i<=m;i++) cin>>L[i]>>R[i],q[R[i]].push_back({L[i],i});
sort(tsl+1,tsl+m+1,[](int a,int b){return L[a]<L[b];});
sort(tsr+1,tsr+m+1,[](int a,int b){return R[a]<R[b];});
for(int i=2;i<=n;i++) lg[i]=lg[i>>1]+1;
for(int i=1;i<19;i++){
for(int j=1;j+(1<<i)-1<=n;j++){
mn[j][i]=min(mn[j][i-1],mn[j+(1<<i-1)][i-1]);
mx[j][i]=max(mx[j][i-1],mx[j+(1<<i-1)][i-1]);
}
}
for(int i=1,j=1,k=1;i<=n;i++,j++){
onbl[i]=k;
if(j==1) bgbl[k]=i;
if(j==bsz||i==n) enbl[k]=i,j=0,k++;
}
for(int i=1;i<=n;i++){
if(ap[a[i]]<=b){
if(vd[a[i]].size()){
int tmp=gmax(vd[a[i]].back(),i),tl,tr;
l=0,r=vd[a[i]].size()-1;
while(l<=r){
if(gmax(vd[a[i]][mid],i)==tmp) tl=mid,r=mid-1;
else l=mid+1;
}
if(y[vd[a[i]].back()]==tmp) tl=vd[a[i]].size()-1;
l=i,r=n;
while(l<=r){
if(gmax(vd[a[i]].back(),mid)==tmp) tr=mid,l=mid+1;
else r=mid-1;
}
add[tmp].push_back({{tl,vd[a[i]].size()-1},{a[i],tr}});
}
}
vd[a[i]].push_back(i);
}
for(int i=1;i<=n;i++){
for(pair<pii,pii> j:add[i]){
for(int k=j.first.first;k<=j.first.second;k++){
for(int o=j.first.second+1;o<vd[j.second.first].size();o++){
if(vd[j.second.first][o]>j.second.second) break;
int tmp=gmin(vd[j.second.first][k],vd[j.second.first][o]);
val[tmp]++,bl[onbl[tmp]]++;
}
}
}
for(pii j:q[i]){
if(onbl[j.first]==onbl[i]){
for(int k=j.first;k<=i;k++) ans[j.second]+=val[k];
}else{
for(int k=j.first;k<=enbl[onbl[j.first]];k++) ans[j.second]+=val[k];
for(int k=onbl[j.first]+1;k<onbl[i];k++) ans[j.second]+=bl[k];
for(int k=bgbl[onbl[i]];k<=i;k++) ans[j.second]+=val[k];
}
}
}
for(int i=1;i<=n;i++){
if(ap[i]<=b) continue;
int mx=0,mn=inf;
nt=ont=0;
for(int j=1;j<=n;j++){
if(a[j]==i&&a[j-1]!=i){
addin(mx,0);
if(mx!=mn) addin(mn,0);
addin(y[j],1);
mx=0,mn=inf;
}else if(a[j]==i&&a[j-1]==i){
addin(y[j],1);
mx=0,mn=inf;
}else cmax(mx,y[j]),cmin(mn,y[j]);
}
bbl=ceil(1.0*nt/sqrt(m));
sort(o+1,o+ont+1);
for(int j=1;j<=nt;j++) nm[j]=lower_bound(o+1,o+ont+1,nm[j])-o,pos[nm[j]]=j;
int tml=1,tmr=ont;
for(int j=1;j<=m;j++){
while(tml<=ont&&L[tsl[j]]>o[tml]) tml++;
tl[tsl[j]]=tml;
p[j]=j;
}
for(int j=m;j>=1;j--){
while(tmr>=1&&R[tsr[j]]<o[tmr]) tmr--;
tr[tsr[j]]=tmr;
}
sort(p+1,p+m+1,[](int a,int b){return tl[a]/bbl!=tl[b]/bbl?tl[a]/bbl<tl[b]/bbl:tr[a]<tr[b];});
int cur_bl=-1;
l=r=0;
dsu.flsh();
for(int j=1;j<=m;j++){
if(tl[p[j]]>tr[p[j]]) continue;
if(tl[p[j]]>ont) continue;
if(tl[p[j]]/bbl!=cur_bl){
cur_bl=tl[p[j]]/bbl;
l=min(n+1,(cur_bl+1)*bbl);
r=min(n,(cur_bl+1)*bbl-1);
dsu.flsh();
}
if(tl[p[j]]/bbl==tr[p[j]]/bbl){
for(int k=tl[p[j]];k<=tr[p[j]];k++) ad(k,1);
ans[p[j]]+=dsu.sum;
dsu.reverse();
continue;
}
upd(p[j],min(n+1,(cur_bl+1)*bbl));
}
}
for(int i=1;i<=m;i++) cout<<ans[i]<<endl;
return;
}
string RdFile="";
bool en_memory;
signed main(){
auto bg_clock=chrono::high_resolution_clock::now();
// freopen((RdFile+".in").c_str(),"r",stdin);
// freopen((RdFile+".out").c_str(),"w",stdout);
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// cin>>Case;
while(Case--) Main();
auto en_clock=chrono::high_resolution_clock::now();
auto duration_clock=chrono::duration_cast<chrono::microseconds>(en_clock-bg_clock);
double duration_count=duration_clock.count()*0.001;
double memory_used=(&en_memory-&bg_memory)/1024.0/1024;
// cerr<<"Time:"<<duration_count<<"ms"<<endl;
// cerr<<"Memory: "<<memory_used<<"MB"<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 61040kb
input:
100 100 4 1 5 1 2 1 7 5 3 7 2 3 6 6 5 3 2 2 4 1 6 5 6 2 2 2 7 6 1 3 6 3 5 6 7 6 1 2 3 3 4 2 1 1 5 4 4 3 6 7 1 1 6 1 5 6 2 3 7 4 2 4 6 7 7 3 5 3 7 2 3 3 5 1 4 7 1 2 2 5 2 2 4 3 4 7 2 7 7 3 7 3 6 6 5 4 5 4 7 6 93 52 12 70 25 36 18 37 27 99 68 40 84 3 76 57 60 19 33 41 92 87 58 13 15 43 28 63 64 59 31 ...
output:
1 0 13 71 1 1 3 7 0 0 2 1 3 20 12 6 61 24 1 0 0 2 3 19 0 0 6 2 0 0 4 1 135 0 19 1 1 29 14 39 1 0 1 7 7 0 12 3 0 1 0 1 1 5 0 28 14 19 2 1 0 0 6 5 0 0 2 7 5 1 2 2 0 1 11 1 0 1 0 10 0 0 5 1 33 1 17 2 1 22 20 1 2 0 0 16 0 1 1 15
result:
ok 100 numbers
Test #2:
score: 0
Accepted
time: 3ms
memory: 61072kb
input:
100 100 8 8 2 8 8 12 11 8 5 5 5 1 7 6 6 11 3 13 1 12 2 2 4 1 11 13 10 7 1 2 4 3 1 12 1 5 13 8 1 5 12 5 12 4 6 3 5 4 8 3 4 1 4 3 9 2 11 9 4 8 12 3 5 13 13 1 9 12 2 13 8 13 4 13 12 5 12 13 2 6 4 4 1 6 6 9 12 7 4 3 10 7 1 7 7 10 4 12 3 9 96 87 12 73 74 78 99 76 7 77 54 88 90 86 95 94 31 83 27 11 66 91 ...
output:
0 6 2 0 0 1 16 1 1 10 7 9 2 8 2 1 3 5 0 7 2 0 2 0 1 0 7 0 0 1 108 0 0 0 6 4 1 0 2 13 0 3 0 10 0 0 1 21 0 18 0 11 0 8 13 9 0 0 0 11 12 2 1 0 2 16 1 7 0 16 0 2 3 7 0 2 10 1 4 2 6 0 0 6 3 0 0 0 5 7 0 0 6 0 7 0 4 0 3 0
result:
ok 100 numbers
Test #3:
score: 0
Accepted
time: 11ms
memory: 61044kb
input:
100 100 13 4 2 1 1 2 1 39 20 1 1 1 33 1 1 1 9 37 21 7 14 58 1 3 19 29 40 56 2 1 3 1 42 1 1 13 1 3 5 4 49 1 1 8 8 3 1 14 1 1 2 6 17 3 2 2 2 9 3 1 17 90 1 1 1 1 8 14 17 16 1 33 15 20 46 22 2 20 11 1 28 3 1 4 1 17 3 9 10 2 1 2 2 6 1 1 3 17 27 2 86 82 24 49 50 32 63 20 53 11 60 1 16 27 15 14 12 88 52 17...
output:
1 84 13 0 7 4 26 1 9 1 7 3 10 0 7 3 6 4 4 0 13 1 0 4 4 0 40 22 36 0 5 6 0 37 28 213 1 6 10 4 0 3 5 0 3 5 25 2 0 1 3 12 1 39 0 8 4 2 6 0 6 4 23 17 0 0 4 13 6 6 0 0 6 10 11 30 0 7 10 10 101 0 1 0 62 0 10 100 26 4 5 1 24 0 1 4 15 3 0 6
result:
ok 100 numbers
Test #4:
score: 0
Accepted
time: 3ms
memory: 63220kb
input:
100 100 1 1 1 1 1 36 58 18 15 1 1 2 1 1 1 1 4 10 9 2 2 4 28 1 2 1 2 2 28 27 12 6 3 10 1 1 2 1 1 2 7 40 1 4 8 17 16 3 5 1 2 2 16 5 6 1 5 3 4 11 1 1 11 51 11 4 3 7 14 16 1 11 1 2 8 3 4 1 1 3 2 5 21 7 3 10 2 2 1 20 23 1 3 6 1 1 15 3 34 1 8 1 2 3 92 48 11 43 9 71 69 5 6 7 12 26 31 45 80 83 14 16 17 25 2...
output:
29 1 9 19 6 1 3 2 0 16 15 2 11 14 24 191 25 21 33 34 19 2 0 0 11 32 1 9 2 16 24 28 9 0 123 4 6 0 13 69 271 15 47 6 0 121 0 1 15 1 9 61 0 63 10 2 2 13 55 25 12 2 40 4 3 39 14 15 0 15 2 48 6 0 0 6 0 5 0 11 3 1 78 9 12 0 0 14 15 38 7 3 0 12 10 0 1 6 0 22
result:
ok 100 numbers
Test #5:
score: 0
Accepted
time: 0ms
memory: 61188kb
input:
100 100 1 15 6 12 6 13 8 8 3 5 14 5 7 13 8 1 1 3 8 5 4 7 9 1 1 7 4 14 7 5 4 6 7 5 11 6 4 14 8 11 12 9 12 14 10 12 9 14 14 11 12 12 11 8 5 11 10 6 13 5 6 4 6 15 10 2 13 12 7 15 9 14 15 1 9 9 8 4 5 2 2 5 13 14 12 5 9 13 7 12 1 1 1 7 10 5 11 4 4 6 17 65 39 50 77 97 44 15 72 11 8 59 74 14 1 3 5 68 21 4 ...
output:
24 5 0 4 0 1 0 0 2 0 2 11 0 13 12 3 19 0 0 0 5 1 0 0 14 0 9 0 1 22 7 25 44 0 7 0 0 3 27 1 0 0 8 3 0 0 2 2 18 26 63 15 2 28 0 1 8 10 18 19 4 0 0 5 0 0 3 15 5 63 5 8 29 0 14 8 7 2 3 1 1 1 2 1 6 8 0 0 19 0 20 0 3 11 0 4 6 5 55 0
result:
ok 100 numbers
Test #6:
score: 0
Accepted
time: 7ms
memory: 61524kb
input:
5000 5000 2 29 12 10 25 32 45 18 16 38 41 50 8 32 54 37 18 29 37 42 9 38 25 43 35 5 47 20 32 35 8 14 8 37 30 16 45 19 14 33 14 31 31 33 28 12 11 49 32 6 11 4 50 39 3 55 25 26 13 40 41 44 31 31 18 19 25 18 29 19 21 1 52 19 2 53 39 55 11 27 54 22 16 49 12 23 41 22 34 38 40 20 5 35 43 40 29 14 20 40 6 ...
output:
21908 618 65611 229 7839 55433 12508 4205 5 12239 31375 1958 20 2290 29810 13020 12234 5752 14318 13451 122 0 109 3852 26843 12709 11522 14307 45468 886 5020 6667 21808 3367 637 593 37 5078 2698 61 364 20500 88231 2311 39 2487 18627 3425 194 4845 54212 84095 14695 8 67509 4364 312 23989 3876 86722 1...
result:
ok 5000 numbers
Test #7:
score: 0
Accepted
time: 4ms
memory: 61344kb
input:
5000 5000 15 86 121 63 26 26 74 43 35 32 48 131 61 120 103 48 101 1 70 97 130 105 30 38 68 141 85 141 108 17 143 106 47 90 4 68 63 8 79 26 10 66 48 61 18 75 62 84 80 113 20 27 109 102 32 13 20 63 12 53 112 146 33 27 49 110 55 132 121 67 75 18 38 80 140 62 7 20 104 4 42 91 67 20 127 77 13 141 64 3 28...
output:
0 132 8 26 0 32 1 61 40 0 0 0 0 18 49 15 0 14 2 63 24 9 10 94 10 21 1 2 1 6 17 21 1 83 19 9 0 21 67 8 13 0 0 0 13 1 0 21 0 13 1 123 0 0 8 0 0 10 14 2 32 2 8 53 29 0 23 6 6 0 0 13 0 1 0 3 0 0 1 0 5 15 15 0 4 4 1 0 1 0 0 2 1 0 0 0 0 1 2 1 11 23 45 1 0 9 14 104 60 8 3 1 2 38 34 32 1 0 0 38 27 18 62 0 5...
result:
ok 5000 numbers
Test #8:
score: 0
Accepted
time: 14ms
memory: 63396kb
input:
5000 5000 342 3 498 1667 87 63 8 215 1 25 67 5 7 600 1 1 51 14 6 1990 7 2707 105 637 5 805 328 74 1 57 316 236 6 1 1 700 965 2 493 21 12 2 1 1626 1 1352 11 109 1 2253 70 4 788 55 140 1 2 1 57 21 1 530 3060 62 266 86 32 1861 1 173 2 2 234 1 402 1392 101 9 7 1 8 3 8 137 46 4 17 212 1 4 10 6 1389 200 4...
output:
31295 316 211 102 965 1000 240 6385 76 10466 792 35 1756 169788 1195 1314 387 227 1144 30655 418 111933 122174 553 30337 24 67 125165 1286 28309 2796 6724 354 4078 17 138 11139 1 56797 1 2093 300 103019 8 257 28645 121966 128335 119276 5970 21 122331 475 103019 4 298 179 32016 121637 194237 53 12189...
result:
ok 5000 numbers
Test #9:
score: 0
Accepted
time: 8ms
memory: 61520kb
input:
5000 5000 27 32 25 415 15 148 94 43 16 3 71 1 11 33 159 1196 1069 752 1937 1 35 29 12 1 389 38 8 49 1 1 582 7 1274 30 9 123 68 14 3 7 88 4 11 3126 176 1304 6 659 118 128 1 537 100 784 225 42 37 36 2 15 2 359 411 60 4 261 1 3 61 11 88 154 2674 162 1014 1875 1 3 139 3 196 8 67 99 187 559 2 1 459 10 1 ...
output:
85 28 1761 27 50 45 0 43 1 3 5 4 15 425 0 1 7 23 1 42 0 0 7 51 3 27 28 3 26 0 58 82 53 494 9 88 33 33 17 49 9 0 63 105 0 9 17 1 252 11 3 107 1 2 0 0 17 24 5 414 0 70 98 40 29 553 216 521 2 246 0 122 6 14 0 4 70 310 72 23 191 115 5 3 12 0 0 6292 10 64 16 8 17 28 0 3 157 1 3 32 64 0 26 14 307 1 19 26 ...
result:
ok 5000 numbers
Test #10:
score: 0
Accepted
time: 11ms
memory: 67404kb
input:
5000 5000 11 23 46 15 52 41 22 12 24 42 36 22 61 6 21 31 43 15 11 54 20 58 57 39 51 14 2 41 35 20 16 12 9 25 39 8 60 32 20 60 51 52 19 34 19 60 33 48 17 42 12 50 38 4 30 16 48 49 55 58 57 5 39 61 39 32 51 14 2 10 57 43 41 8 12 5 58 36 14 34 32 17 49 24 60 58 55 60 25 18 6 3 44 47 7 17 24 5 10 35 7 1...
output:
608 171 30 6024 1921 142 1462 718 16 5 2 143 1939 971 40 59 3345 98 679 54 405 318 55 399 28 642 1481 0 58 1874 1591 0 1076 3357 465 3566 763 532 2615 337 0 1842 140 588 1753 0 197 3945 1753 33 1868 105 33 167 917 0 1895 45 1364 3626 1555 235 30 1964 4545 5583 360 214 530 263 1895 892 18 823 99 2593...
result:
ok 5000 numbers
Test #11:
score: 0
Accepted
time: 339ms
memory: 103448kb
input:
200000 200000 450 380 429 292 321 431 244 311 46 303 35 470 556 53 249 617 400 730 447 823 508 364 616 659 843 840 80 572 310 461 342 805 733 267 441 810 191 675 618 165 380 64 359 514 592 304 551 679 492 484 24 355 489 456 61 590 445 588 470 836 493 213 730 417 675 436 496 393 677 10 397 143 573 44...
output:
19810 486331 568929 123972 48879 617941 1254986 1109929 112192 594018 0 560940 13348 1728346 38662 16235 53474 756623 447220 925352 1878 8672 17371 853 144927 1300294 114644 72 104581 59 386661 1138358 1613460 160107 493876 88493 1693729 248416 553305 21021 174725 39537 35619 7653 270063 863775 2837...
result:
ok 200000 numbers
Test #12:
score: -100
Wrong Answer
time: 941ms
memory: 116504kb
input:
200000 200000 19366 9283 162 4589 57 291 1 3 12 278 10 672 3 26 4 1 162500 668 1239 4473 2202 126 7615 9046 4210 1277 6 931 7 73 788 1779 8309 782 4 31785 414 4639 13637 753 5 1 66995 9 38399 9 1 38 7 12 111 88737 1020 1 219 3 18605 3 42958 22 1 7920 1 7602 12 320 1 2 329 3404 15 47 1 10 4 3 983 3 5...
output:
440131 282 5429197 709292 5127 2951009 400986 565805 754707 2118055 127676 1607596 171368 92820 2 4965292 28727 63187 22788 404331 227911 4610859 756314 12642 4605795 397394 826002 1800167 1312 5661 9753611 681410 1586017 424984 171353 13210 429894 450978 1468748 3678835 519883 4292364 92744 5540792...
result:
wrong answer 1st numbers differ - expected: '440126', found: '440131'