QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#688340 | #9242. An Easy Geometry Problem | ucup-team5351 | WA | 471ms | 22848kb | C++20 | 4.6kb | 2024-10-30 05:59:23 | 2024-10-30 05:59:25 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops")
#define ALL(v) v.begin(),v.end()
#define For(i,_) for(int i=0,i##end=_;i<i##end;++i) // [0,_)
#define FOR(i,_,__) for(int i=_,i##end=__;i<i##end;++i) // [_,__)
#define Rep(i,_) for(int i=(_)-1;i>=0;--i) // [0,_)
#define REP(i,_,__) for(int i=(__)-1,i##end=_;i>=i##end;--i) // [_,__)
typedef long long ll;
typedef unsigned long long ull;
#define V vector
#define pb push_back
#define pf push_front
#define qb pop_back
#define qf pop_front
#define eb emplace_back
typedef pair<int,int> pii;
typedef pair<ll,int> pli;
#define fi first
#define se second
const int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}},inf=0x3f3f3f3f,mod=1e9+7;
const ll infl=0x3f3f3f3f3f3f3f3fll;
template<class T>inline bool ckmin(T &x,const T &y){return x>y?x=y,1:0;}
template<class T>inline bool ckmax(T &x,const T &y){return x<y?x=y,1:0;}
int init=[](){return cin.tie(nullptr)->sync_with_stdio(false),0;}();
int main(){
int t_case=1;
//scanf("%d",&t_case);
while(t_case--){
int b,k,n,q;
scanf("%d%d%d%d",&n,&q,&k,&b);
V<ull>bs(n+1),pre(n+1);
bs[0]=pre[0]=1;
For(i,n)pre[i+1]=pre[i]+(bs[i+1]=bs[i]*23333);
V<int>a(n);
For(i,n){
scanf("%d",&a[i]);
(a[i]*=2)-=i*k;
}
V<ull>h(n<<2),h2(n<<2);
auto build=[&](auto &&self,int p,int l,int r){
if(l==r){
h[p]=h2[p]=a[l];
return;
}
int mid=l+r>>1;
self(self,p<<1,l,mid),self(self,p<<1|1,mid+1,r);
h[p]=h[p<<1]*bs[r-mid]+h[p<<1|1],h2[p]=h2[p<<1]+h2[p<<1|1]*bs[mid-l+1];
};
build(build,1,0,n-1);
V<int>tag(n<<2);
auto modify=[&](auto &&self,int p,int l,int r,int ql,int qr,int v){
if(ql<=l&&r<=qr){
ull add=pre[r-l]*v;
h[p]+=add,h2[p]+=add,tag[p]+=v;
return;
}
int mid=l+r>>1;
if(tag[p]){
ull add=pre[mid-l]*tag[p];
h[p<<1]+=add,h2[p<<1]+=add,tag[p<<1]+=tag[p];
add=pre[r-mid-1]*tag[p];
h[p<<1|1]+=add,h2[p<<1|1]+=add,tag[p<<1|1]+=tag[p];
tag[p]=0;
return;
}
if(ql<=mid)self(self,p<<1,l,mid,ql,qr,v);
if(qr>mid)self(self,p<<1|1,mid+1,r,ql,qr,v);
h[p]=h[p<<1]*bs[r-mid]+h[p<<1|1],h2[p]=h2[p<<1]+h2[p<<1|1]*bs[mid-l+1];
};
ull ans;
auto query=[&](auto &&self,int p,int l,int r,int ql,int qr){
if(ql<=l&&r<=qr){
ans=ans*bs[r-l+1]+h[p];
return;
}
int mid=l+r>>1;
if(tag[p]){
ull add=pre[mid-l]*tag[p];
h[p<<1]+=add,h2[p<<1]+=add,tag[p<<1]+=tag[p];
add=pre[r-mid-1]*tag[p];
h[p<<1|1]+=add,h2[p<<1|1]+=add,tag[p<<1|1]+=tag[p];
tag[p]=0;
return;
}
if(ql<=mid)self(self,p<<1,l,mid,ql,qr);
if(qr>mid)self(self,p<<1|1,mid+1,r,ql,qr);
};
ull ans2;
auto query2=[&](auto &&self,int p,int l,int r,int ql,int qr){
if(ql<=l&&r<=qr){
ans2=h2[p]+ans2*bs[r-l+1];
return;
}
int mid=l+r>>1;
if(tag[p]){
ull add=pre[mid-l]*tag[p];
h[p<<1]+=add,h2[p<<1]+=add,tag[p<<1]+=tag[p];
add=pre[r-mid-1]*tag[p];
h[p<<1|1]+=add,h2[p<<1|1]+=add,tag[p<<1|1]+=tag[p];
tag[p]=0;
return;
}
if(qr>mid)self(self,p<<1|1,mid+1,r,ql,qr);
if(ql<=mid)self(self,p<<1,l,mid,ql,qr);
};
while(q--){
int op;
scanf("%d",&op);
if(op&1){
int l,r,v;
scanf("%d%d%d",&l,&r,&v);
modify(modify,1,0,n-1,l-1,r-1,v*2);
}
else{
int k;
scanf("%d",&k),--k;
int ez=0,l=1,r=min(k,n-1-k);
while(l<=r){
int mid=l+r>>1;
ans=ans2=0;
query(query,1,0,n-1,k-mid,k-1),query2(query2,1,0,n-1,k+1,k+mid);
if(ans+2*b*pre[mid-1]==ans2)ez=mid,l=mid+1;
else r=mid-1;
}
printf("%d\n",ez);
}
}
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3828kb
input:
6 6 6 2 1 5 9 10 15 18 2 2 1 3 3 -3 2 2 1 3 4 3 2 3 2 4
output:
1 0 2 0
result:
ok 4 number(s): "1 0 2 0"
Test #2:
score: 0
Accepted
time: 9ms
memory: 4000kb
input:
5000 5000 2 0 -329 -328 -327 -326 -325 -324 -323 -322 -321 -320 -319 -318 -317 -316 -315 -314 -313 -312 -311 -310 -309 -308 -307 -306 -305 -304 -303 -302 -301 -300 -299 -298 -297 -296 -295 -294 -293 -292 -291 -290 -289 -288 -287 -286 -285 -284 -283 -282 -281 -280 -279 -278 -277 -276 -275 -274 -273 -...
output:
2 304 73 29 61 292 139 48 17 99 6 5 53 93 3 91 65 29 33 306 21 24 17 21 281 12 16 1 33 7 18 96 7 40 39 13 7 46 43 16 1 72 33 16 22 5 6 189 27 1 35 107 43 34 3 27 20 21 44 56 96 36 2 27 22 30 32 6 5 105 27 37 12 58 2 21 154 17 110 57 3 7 33 15 24 94 68 25 1 14 10 4 10 2 25 39 36 33 164 11 19 181 11 3...
result:
ok 3337 numbers
Test #3:
score: 0
Accepted
time: 9ms
memory: 4076kb
input:
5000 5000 2 0 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 86...
output:
362 82 14 234 140 5 44 136 22 43 29 96 59 23 25 61 193 22 39 39 23 53 48 76 100 58 120 24 12 106 32 48 73 63 116 16 136 10 28 15 84 30 65 1 54 15 16 70 1 95 74 14 17 20 36 254 22 29 70 172 106 2 25 8 98 35 169 16 2 2 99 10 36 40 3 69 272 170 219 12 79 26 78 100 10 167 140 70 34 17 23 21 55 10 6 17 6...
result:
ok 3313 numbers
Test #4:
score: 0
Accepted
time: 9ms
memory: 4004kb
input:
5000 5000 2 0 -456 -455 -454 -453 -452 -451 -450 -449 -448 -447 -446 -445 -444 -443 -442 -441 -440 -439 -438 -437 -436 -435 -434 -433 -432 -431 -430 -429 -428 -427 -426 -425 -424 -423 -422 -421 -420 -419 -418 -417 -416 -415 -414 -413 -412 -411 -410 -409 -408 -407 -406 -405 -404 -403 -402 -401 -400 -...
output:
8 75 80 408 385 73 37 402 338 43 11 163 3 7 80 0 339 47 384 8 10 47 162 307 30 28 36 14 27 126 271 151 4 11 11 9 92 154 2 15 28 160 205 12 59 79 114 23 22 141 7 12 31 42 120 0 34 2 167 157 76 32 20 298 47 104 76 33 49 34 1 40 16 1 28 7 4 55 14 8 68 17 7 117 1 14 14 80 44 8 45 49 65 15 49 56 50 40 14...
result:
ok 3296 numbers
Test #5:
score: -100
Wrong Answer
time: 471ms
memory: 22848kb
input:
200000 199999 -195 -119 -267 -146 191 -456 835 265 -226 -264 160 -101 739 -988 -967 890 -753 -854 514 491 -733 662 681 -362 804 -714 -1000 -790 931 -450 212 94 239 638 400 -167 -360 18 606 256 445 695 -509 643 -892 213 -32 42 400 733 -667 -986 225 493 -699 547 409 -35 394 920 -163 -908 -576 921 -997...
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
result:
wrong answer 1320th numbers differ - expected: '1', found: '0'