QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#579099 | #1831. Bruteforce | ydzr00000 | RE | 3ms | 28620kb | C++17 | 2.1kb | 2024-09-21 08:49:31 | 2024-09-21 08:49:32 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int V=1e5;
int a[100001];
long long pw[100001][6];
const int C[6][6]={
{1,0,0,0,0,0},
{1,1,0,0,0,0},
{1,2,1,0,0,0},
{1,3,3,1,0,0},
{1,4,6,4,1,0},
{1,5,10,10,5,1},
};
const int mod=998244353;
const int inv[6]={0,1,499122177,332748118,748683265,598946612};
class SegmentTree{
private:
struct node{
int cnt[5][5];
long long f[5];
// cnt[x][y]
// val mod w = x
// pos mod w = y
int sz;
}seg[450001];
int k,w;
inline void pushup(int id)
{
seg[id].sz=seg[id<<1].sz+seg[id<<1|1].sz;
int shift=seg[id<<1].sz;
for(int i=0;i<w;i++)
for(int j=0;j<w;j++)
seg[id].cnt[i][j]=(seg[id<<1].cnt[i][j]+seg[id<<1|1].cnt[i][(j-shift%w+w)%w]);
for(int i=0;i<=k;i++)
{
seg[id].f[i]=seg[id<<1].f[i];
for(int j=0;j<=i;j++)
seg[id].f[i]=(seg[id].f[i]+seg[id<<1|1].f[j]*C[i][j]%mod*pw[shift][i-j]%mod)%mod;
}
}
public:
inline void Constant(int K,int W){k=K;w=W;}
inline void update(int l,int r,int id,int pos,int val)
{
if(l==r)
{
seg[id].sz+=val;
int num=seg[id].sz+(val==-1);
seg[id].cnt[pos%w][num%w]+=val;
for(int i=0;i<=k;i++)
seg[id].f[i]=(seg[id].f[i]+val*pos%mod*pw[num][i]%mod+mod)%mod;
return;
}
int mid=(l+r)>>1;
if(mid>=pos)
update(l,mid,id<<1,pos,val);
else
update(mid+1,r,id<<1|1,pos,val);
pushup(id);
}
inline long long query()
{
long long ans=seg[1].f[k];
for(int i=0;i<w;i++)
for(int j=0;j<w;j++)
ans=(ans-seg[1].cnt[i][j]*(i*pw[j][k]%w)%mod+mod)%mod;
ans=ans*inv[w]%mod;
return ans;
}
};
SegmentTree S;
int main(){
int n,k,w;
scanf("%d %d %d",&n,&k,&w);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
for(int i=0;i<=V;i++)
{
pw[i][0]=1;
for(int j=1;j<=k;j++)
pw[i][j]=pw[i][j-1]*i%mod;
}
S.Constant(k,w);
for(int i=1;i<=n;i++)
S.update(0,V,1,a[i],1);
int q;
scanf("%d",&q);
while(q--)
{
int pos,x;
scanf("%d %d",&pos,&x);
S.update(0,V,1,a[pos],-1);
a[pos]=x;
S.update(0,V,1,a[pos],1);
printf("%lld\n",S.query());
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 3ms
memory: 15008kb
input:
3 1 1 2 2 8 2 2 5 3 6
output:
36 30
result:
ok 2 number(s): "36 30"
Test #2:
score: 0
Accepted
time: 0ms
memory: 15352kb
input:
4 2 2 1 3 3 7 4 1 1 2 4 3 8 4 8
output:
75 80 103 108
result:
ok 4 number(s): "75 80 103 108"
Test #3:
score: 0
Accepted
time: 0ms
memory: 26088kb
input:
10 1 1 16251 28898 58179 69362 48663 81443 34949 87167 16552 58931 10 6 89124 8 27159 4 7332 1 15852 9 67405 7 19413 10 97472 7 31114 6 31847 5 43794
output:
3511390 3107346 2780002 2779204 3079414 3018965 3365708 3406982 2970195 2936112
result:
ok 10 numbers
Test #4:
score: 0
Accepted
time: 0ms
memory: 28620kb
input:
100 2 2 44625 87890 57662 73552 89172 64466 22834 24089 60132 5187 88984 19022 67559 53954 42114 19018 80035 3367 50518 15479 72359 15452 38886 5945 34974 86214 16805 71388 48981 45377 34170 61384 88881 29453 94738 94669 56746 80508 79155 94505 82745 38134 41769 2032 23186 5636 39727 54400 86133 497...
output:
81216962 152846115 156547587 163221145 293598979 178882623 92185541 202208317 181562234 200670345 213033267 262881364 247600647 301317991 271334928 261885869 261690216 247578015 236998290 291971331 293746018 424418987 402413699 300515771 300819876 344295103 391424353 392633865 361623113 355154190 47...
result:
ok 100 numbers
Test #5:
score: -100
Runtime Error
input:
1000 5 5 67444 21858 17070 50937 22108 62205 2999 96284 84111 16255 69173 11611 84406 28349 95817 86160 87289 19642 22706 44359 31899 36187 15946 86429 23120 65928 81187 32204 37790 18497 52182 23455 59579 78480 45277 57706 60123 99315 19014 72404 35420 14632 12210 38628 1729 18606 23941 96652 80784...