QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#142586 | #6513. Expression 3 | qzez | AC ✓ | 572ms | 78188kb | C++14 | 3.6kb | 2023-08-19 12:50:58 | 2024-02-14 13:28:39 |
Judging History
answer
#include<bits/stdc++.h>
#define Gc() getchar()
#define Me(x,y) memset(x,y,sizeof(x))
#define Mc(x,y) memcpy(x,y,sizeof(x))
#define d(x,y) ((m)*(x-1)+(y))
#define R(n) (rnd()%(n)+1)
#define Pc(x) putchar(x)
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
using namespace std;using ll=long long;using db=double;using lb=long db;using ui=unsigned;using ull=unsigned long long;using pii=pair<int,int>;using LL=__int128;
const int N=(1<<19)+5,M=2e3+5,K=31650,mod=998244353,Mod=mod-1;const db eps=1e-9;const int INF=1e9+7;mt19937 rnd(time(0));
int n,A[N];char s[N];ll frc[N],inv[N],Inv[N];
ll C(int x,int y){return frc[x]*Inv[y]%mod*Inv[x-y]%mod;}
ll mpow(ll x,int y=mod-2){ll ans=1;while(y) y&1&&(ans=ans*x%mod),y>>=1,x=x*x%mod;return ans;}
namespace LOG{
const int g=3,Ig=mpow(g),step=1e3;
const int N=1e6+5,M=1e5+5;
pii A[N];int H;
int ph,pr[M],Fl[M],f[M];
int calc(int x){
for(int i=0;;i++) {
auto p=LB(A+1,A+H+1,make_pair(x,0));if(p->fi==x) return (p->se+i)%Mod;
x=1ll*x*Ig%mod;
}
assert(0);return -1;
}
void Init(){
int i,j;
for(i=0;i<mod;i+=step) A[++H]=make_pair(mpow(g,i),i);sort(A+1,A+H+1);
for(i=2;i<=K;i++) {
if(!Fl[i]) pr[++ph]=i,f[i]=calc(i);
for(int j=1;j<=ph&&i*pr[j]<=K;j++) {Fl[i*pr[j]]=1;f[i*pr[j]]=(f[i]+f[pr[j]])%Mod;if(i%pr[j]==0) break;}
}
}
ll qry(int x){
if(x<=K) return f[x];
int q=mod/x,r=mod%x;
if(r<x-r) return (qry(r)+(mod-1)/2-f[q]+Mod)%Mod;
return (qry(x-r)-f[q+1]+Mod)%Mod;
}
}
namespace Poly{
#define CP complex<double>
const int mod=998244352;
int k,tr[N];CP C[N],D[N],f1[N],f2[N],O1[N],O2[N];const db pi=acos(-1);const int Wg=(1<<15);
void Init(int p){for(k=1;k<=p;k<<=1);for(int i=0;i<k;i++) tr[i]=(tr[i>>1]>>1)|((i&1)?k/2:0);for(int i=0;i<k;i++) O1[i]={cos(2*pi/k*i),sin(2*pi/k*i)},O2[i]=conj(O1[i]);}
void FFT(CP *A,int k,int Fl){
int i,j,h;CP now;for(i=0;i<k;i++) tr[i]<i&&(swap(A[i],A[tr[i]]),0);
for(i=2;i<=k;i<<=1){
for(j=0;j<k;j+=i){
for(h=j;h<j+i/2;h++) now=(Fl?O1[k/i*(h-j)]:O2[k/i*(h-j)])*A[h+i/2],A[h+i/2]=A[h]-now,A[h]+=now;
}
}if(Fl) return;for(i=0;i<k;i++) A[i]/=k;
}
ll Push(db x){return (ll)(x+0.5)%mod;}
void mul(ll *A,ll *B,ll *G,int n,int m){
int i;Init(n+m);
for(i=0;i<k;i++) C[i]=(CP){0,0};for(i=0;i<n;i++) C[i]=(CP){A[i]/Wg*1.0,A[i]%Wg*1.0};
FFT(C,k,1);for(i=0;i<k;i++) D[i]=conj(C[(k-i)%k]),f1[i]=(C[i]+D[i])*0.5,f2[i]=(D[i]-C[i])*(CP){0,1}*0.5;
for(i=0;i<k;i++) C[i]=(CP){0,0};for(i=0;i<m;i++) C[i]=(CP){B[i]/Wg*1.0,B[i]%Wg*1.0};
FFT(C,k,1);for(i=0;i<k;i++) f1[i]=f1[i]*C[i],f2[i]=f2[i]*C[i];
FFT(f1,k,0);FFT(f2,k,0);for(i=0;i<n+m;i++) G[i]=(Push(f1[i].real())*Wg*Wg%mod+(Push(f1[i].imag())+Push(f2[i].real()))*Wg%mod+Push(f2[i].imag()))%mod;
}
}
ll f[N],c[N],b[N],d[N];
int main(){
int i,j;LOG::Init();
scanf("%d",&n);
for(i=1;i<=n;i++) scanf("%d",&A[i]);
scanf("%s",s+1);
for(frc[0]=i=1;i<=n;i++) frc[i]=frc[i-1]*i%mod;
inv[1]=1;for(i=2;i<=n;i++) inv[i]=(mod-inv[mod%i])*(mod/i)%mod;
for(Inv[0]=i=1;i<=n;i++) Inv[i]=Inv[i-1]*inv[i]%mod;
for(i=1;i<=n;i++) f[i]=LOG::qry(i);
for(i=1;i<n;i++) b[i]=(s[i]=='+'?0:1);
for(i=3;i<=n;i++) c[i]=(f[i-2]-f[i]+Mod)%Mod;
Poly::mul(b,c,d,n+1,n+1);
// cerr<<c[3]<<' '<<d[5]<<' '<<f[3]<<'\n';
ll ans=A[1]*frc[n-1]%mod;
ll Sum=0;
for(i=2;i<=n;i++){
ll tot=(s[i-1]=='+'?0:Mod/2);
if(i>2){
if(i>3) Sum+=f[i-1];
if(s[i-2]=='-') continue;
tot+=f[2];
if(i>3) tot+=Sum+d[i];
}
tot%=Mod;
// cerr<<mpow(LOG::g,tot)<<'\n';
// cerr<<tot*frc[i-2]%mod<<'\n';
ans+=mpow(LOG::g,tot)*C(n-1,n-i)%mod*frc[n-i]%mod*A[i]%mod;
}
printf("%lld\n",ans%mod);
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 438ms
memory: 14336kb
input:
4 9 1 4 1 -+-
output:
46
result:
ok 1 number(s): "46"
Test #2:
score: 0
Accepted
time: 445ms
memory: 12356kb
input:
5 1 2 3 4 5 +-+-
output:
998244313
result:
ok 1 number(s): "998244313"
Test #3:
score: 0
Accepted
time: 506ms
memory: 44624kb
input:
100000 664815434 205025136 871445392 797947979 379688564 336946672 231295524 401655676 526374414 670533644 156882283 372427821 700299596 166140732 677498490 44858761 185182210 559696133 813911251 842364231 681916958 114039865 222372111 784286397 437994571 152137641 650875922 613727135 209302742 5321...
output:
178167352
result:
ok 1 number(s): "178167352"
Test #4:
score: 0
Accepted
time: 559ms
memory: 77020kb
input:
200000 109044620 745578941 396599814 756923982 940933214 875346257 378089839 792684563 491924893 782192923 208569108 421583135 814903710 690275542 15773609 364566266 12890134 661702679 640270667 615999192 13352194 325560419 385152885 265008089 570536451 282429805 331946208 255056541 813809151 150995...
output:
906231177
result:
ok 1 number(s): "906231177"
Test #5:
score: 0
Accepted
time: 566ms
memory: 76932kb
input:
200000 991334510 177866119 27073623 774441256 966276556 402848846 925387332 721036844 45195385 321030260 10113432 904597390 112739646 803658721 264567382 653132213 269074242 200760221 213073284 407501659 432374932 510097562 918523218 549818494 916660913 580046296 630255077 563211663 924956860 167173...
output:
732301061
result:
ok 1 number(s): "732301061"
Test #6:
score: 0
Accepted
time: 558ms
memory: 77132kb
input:
200000 168591690 946589788 26143651 496991237 360216116 930351437 136248334 649389125 893433171 269933014 516690465 608950009 115608290 285638120 881957375 646730868 451629421 698348568 785875901 904036836 219993889 63230924 820489770 129596189 336414302 951291715 223531237 944995713 372541056 18335...
output:
788772214
result:
ok 1 number(s): "788772214"
Test #7:
score: 0
Accepted
time: 561ms
memory: 77108kb
input:
200000 50881579 83909674 361650169 514508511 385559458 826450247 978513118 577741406 741670955 513803060 613202080 386931556 413444226 399021299 130751147 935296815 2780819 237406110 653645809 326943084 344049334 616364286 722456323 783002813 682538764 617504426 226872815 253150834 778656057 1995301...
output:
627694060
result:
ok 1 number(s): "627694060"
Test #8:
score: 0
Accepted
time: 572ms
memory: 77012kb
input:
200000 523106053 221229561 360720198 237058492 779499019 648920129 189374120 506093687 294941448 52640398 414746404 459880394 711280162 175967989 748141140 223862761 890368708 440027164 226448425 823478261 763072072 169497648 329455583 362780508 28663225 915120917 525181684 561305956 521207545 51067...
output:
224871848
result:
ok 1 number(s): "224871848"
Test #9:
score: 0
Accepted
time: 549ms
memory: 77096kb
input:
200000 405395942 358549449 991194007 623171986 173438580 176422719 736671613 434445968 479615721 1543152 921323436 237861941 9116098 289351168 996934913 881024928 441520106 979084707 94218333 614980729 550691028 59067499 862825916 647590912 374787687 286366335 118457844 238057297 927322545 821821576...
output:
285443540
result:
ok 1 number(s): "285443540"
Test #10:
score: 0
Accepted
time: 562ms
memory: 78188kb
input:
200000 582653123 790836628 695296744 640689260 493749213 367488820 242499907 67830957 327853506 245413198 722867760 15843488 306952034 66297859 614324906 169590874 329107994 181705761 667020950 37886976 969713766 907168154 59759759 932401317 130977565 657611754 416766713 546212419 743502962 83799997...
output:
348063785
result:
ok 1 number(s): "348063785"
Test #11:
score: 0
Accepted
time: 560ms
memory: 77108kb
input:
200000 464943012 928156516 30803261 363239241 887688775 894991411 789797399 291150530 881123999 784250536 229444792 425228815 236191750 179681038 863118679 458156821 511663173 720763304 239823566 534422153 93769210 460301515 961726313 512179012 477102027 323824465 715075582 222963760 486054450 48558...
output:
47020208
result:
ok 1 number(s): "47020208"
Test #12:
score: 0
Accepted
time: 535ms
memory: 77132kb
input:
200000 937167485 696880183 661277070 380756515 281628336 422494001 632062183 924535520 729361784 733153291 662392896 498177654 239060394 956627729 111912451 451755476 62814572 923384358 107593474 30957329 512791948 644838658 863692865 165585635 823226489 621440956 308351742 531118881 892169450 50176...
output:
896066326
result:
ok 1 number(s): "896066326"
Test #13:
score: 0
Accepted
time: 553ms
memory: 77016kb
input:
200000 819457374 834200070 660347099 766870008 306971677 613560103 137890477 221484020 577599568 977023337 463937220 276159201 536896331 775043616 729302444 740321424 950402460 757409192 680396091 158896286 300410904 197972020 397063197 745363331 874383659 287653666 606660612 839274003 339753647 812...
output:
166213443
result:
ok 1 number(s): "166213443"
Test #14:
score: 0
Accepted
time: 566ms
memory: 76980kb
input:
200000 701747263 971519958 995853616 784387282 700911239 141062693 685187969 444803593 130870061 220893382 265481543 349108039 834732267 551990307 273063508 397483590 501553859 960030247 548165999 950398754 719433642 456138090 299029750 30173735 220508120 658899085 904969481 221058052 745868647 8290...
output:
870918628
result:
ok 1 number(s): "870918628"
Test #15:
score: 0
Accepted
time: 568ms
memory: 77120kb
input:
200000 879004444 403807136 994923645 506937264 389818091 373597992 896048973 78188582 979107846 759730721 67025867 463526075 837600911 665373486 595486209 686049537 684109038 499087789 120968615 78337710 843489087 640675233 495963594 609951431 566632582 956515577 498245641 824180466 488420135 845263...
output:
114310698
result:
ok 1 number(s): "114310698"
Test #16:
score: 0
Accepted
time: 549ms
memory: 76984kb
input:
200000 56261624 541127023 625397454 524454537 415161433 196067873 738313756 6540863 827345631 708633475 573602899 536474914 430404138 442320176 139247273 974615484 940293145 701708843 988738525 869840179 631108044 193808595 102962854 599794543 617789752 622728287 796554510 837368296 894535136 861441...
output:
107523556
result:
ok 1 number(s): "107523556"
Test #17:
score: 0
Accepted
time: 551ms
memory: 77108kb
input:
200000 233518805 383479619 624467482 247004519 809100994 92166683 580578539 934893145 380616123 952503521 375147223 314456460 728240075 924299575 461669974 263181430 122848324 240766385 561541141 661342647 50130780 41909249 636333188 548168458 668946922 993973706 799896087 514119637 710715552 172587...
output:
478040178
result:
ok 1 number(s): "478040178"
Test #18:
score: 0
Accepted
time: 539ms
memory: 76952kb
input:
200000 115808694 447170578 959974000 633118013 834444336 914636566 496472251 863245426 933886617 491340858 176691547 387405299 362512499 332650045 5431038 256780085 379032431 443387439 134343757 789281603 469153518 226446391 538299740 832978862 15071383 996622905 393172247 117242050 453267040 188765...
output:
877063671
result:
ok 1 number(s): "877063671"
Test #19:
score: 0
Accepted
time: 557ms
memory: 77132kb
input:
200000 588033167 584490466 295480517 355667994 933416605 442139156 633704326 791597707 782124401 440243613 683268579 165386846 660348435 814629445 959257520 913942252 561587611 982444983 370709885 580784071 593208963 484612462 440266292 412756558 66228552 662835616 691481117 130429880 859382041 8363...
output:
364466881
result:
ok 1 number(s): "364466881"
Test #20:
score: 0
Accepted
time: 547ms
memory: 78152kb
input:
200000 470323056 16777644 294550545 373185268 622323458 338237966 549598037 719949988 630362185 684113659 116216683 574772173 958184371 222979915 871614804 202508198 744142790 185066036 238479793 77319247 380827920 37745824 342232845 697566962 780949234 329048326 284757277 807181222 306966237 852526...
output:
551369995
result:
ok 1 number(s): "551369995"
Test #21:
score: 0
Accepted
time: 561ms
memory: 77120kb
input:
200000 647580237 154097531 630057063 390702541 647666800 160707847 391862820 648302269 183632678 222950996 917761007 352753720 961053016 409992022 120408576 491074145 326897 19090870 811282410 500225496 504883365 222282967 170570469 982377366 127073695 995261037 951662366 115336343 713081238 4586390...
output:
686991048
result:
ok 1 number(s): "686991048"
Test #22:
score: 0
Accepted
time: 552ms
memory: 77104kb
input:
200000 529870126 996450128 629127092 408219815 41606360 688210438 602723824 576654550 31870462 171853750 719305331 425702559 258888951 818342493 737798569 779640092 182882076 558148413 384085026 701793380 923906103 775416329 72537021 930751281 473198157 997910236 249971234 423491465 455632726 474817...
output:
900010087
result:
ok 1 number(s): "900010087"
Test #23:
score: 0
Accepted
time: 557ms
memory: 76948kb
input:
200000 707127307 428737306 259600900 794333309 435545922 879276540 444988607 505006831 880108248 415723797 520849655 203684105 556724887 595289184 281559633 68206038 439066184 760769468 956887643 493295848 711525059 33582399 974503574 215561684 524355327 664122947 843247395 100242806 566780434 49099...
output:
205315233
result:
ok 1 number(s): "205315233"
Extra Test:
score: 0
Extra Test Passed