結果
問題 | No.603 hel__world (2) |
ユーザー | tails |
提出日時 | 2017-12-03 06:57:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,220 bytes |
コンパイル時間 | 2,168 ms |
コンパイル使用メモリ | 174,128 KB |
実行使用メモリ | 49,924 KB |
最終ジャッジ日時 | 2024-05-06 01:13:59 |
合計ジャッジ時間 | 13,399 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 235 ms
11,136 KB |
testcase_01 | AC | 235 ms
11,136 KB |
testcase_02 | AC | 238 ms
11,264 KB |
testcase_03 | AC | 235 ms
11,264 KB |
testcase_04 | AC | 236 ms
11,264 KB |
testcase_05 | AC | 237 ms
11,136 KB |
testcase_06 | AC | 235 ms
11,264 KB |
testcase_07 | AC | 235 ms
11,264 KB |
testcase_08 | AC | 235 ms
11,136 KB |
testcase_09 | AC | 234 ms
11,136 KB |
testcase_10 | AC | 235 ms
11,392 KB |
testcase_11 | AC | 413 ms
15,700 KB |
testcase_12 | AC | 416 ms
15,708 KB |
testcase_13 | AC | 418 ms
15,716 KB |
testcase_14 | AC | 240 ms
11,264 KB |
testcase_15 | WA | - |
testcase_16 | AC | 237 ms
11,264 KB |
testcase_17 | AC | 236 ms
11,264 KB |
testcase_18 | AC | 235 ms
11,264 KB |
testcase_19 | AC | 235 ms
11,264 KB |
testcase_20 | AC | 278 ms
12,288 KB |
testcase_21 | AC | 278 ms
12,416 KB |
testcase_22 | AC | 235 ms
11,264 KB |
testcase_23 | AC | 237 ms
11,264 KB |
testcase_24 | AC | 236 ms
11,392 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 276 ms
12,160 KB |
testcase_30 | AC | 257 ms
11,776 KB |
testcase_31 | AC | 237 ms
11,264 KB |
testcase_32 | WA | - |
コンパイルメッセージ
main.cpp:42:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 42 | main(){ | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define MD 1000003 long long S[26]; char T[1000010]; int xlen[1000010]; long long xnnn[1000010]; int inv[1000010]; int fac[1000010]; int get_inv(long long a, int md){ long long e, s=md, t=a, u=1, v=0; while(s){ e=t/s; t-=e*s; u-=e*v; swap(t,s); swap(u,v); } if(u<0){ u+=md; } return u; } void mkinv(){ for(int i=1;i<MD;++i){ inv[i]=get_inv(i,MD); } } void mkfac(){ fac[0]=1; for(int i=1;i<MD;++i){ fac[i]=(long long)fac[i-1]*i%MD; } } main(){ mkinv(); mkfac(); for(int c=0;c<26;++c){ cin>>S[c]; } cin>>T; int tlen=strlen(T); int r=1; int mc=0; for(int c=0;c<26;++c){ priority_queue<pair<long double,int>> pq; int n=0; int st=-1; int xsum=0; for(int i=0;i<=tlen;++i){ if(T[i]==c+'a'){ if(st<0){ st=i; } }else{ if(st>=0){ int xl=i-st; xlen[n]=xl; //pq.push(make_pair(1.*(xl+1),n)); ++n; //if((S[c]-=xl)<0){ xsum+=xl; if(xsum>S[c]){ cout<<0; exit(0); } st=-1; } } } if(xsum) { #if 1 long long xdiv = S[c]/xsum; S[c]%=xsum; for(int j=0;j<n;++j){ xnnn[j]=xlen[j]*xdiv; r=(long long)r*fac[xnnn[j]%MD]%MD; r=(long long)r*fac[xnnn[j]/MD%MD]%MD; r=(long long)r*fac[xnnn[j]/MD/MD%MD]%MD; mc+=xnnn[j]/MD; mc+=xnnn[j]/MD/MD; r=(long long)r*inv[fac[(xnnn[j]-xlen[j])%MD]]%MD; r=(long long)r*inv[fac[(xnnn[j]-xlen[j])/MD%MD]]%MD; r=(long long)r*inv[fac[(xnnn[j]-xlen[j])/MD/MD%MD]]%MD; mc-=(xnnn[j]-xlen[j])/MD; mc-=(xnnn[j]-xlen[j])/MD/MD; r=(long long)r*inv[fac[xlen[j]]]%MD; pq.push(make_pair(1.l*(xnnn[j]+1)/(xnnn[j]+1-xlen[j]),j)); } #else S[c]-=xsum; for(int j=0;j<n;++j){ xnnn[j]=xlen[j]; pq.push(make_pair(1.l*(xnnn[j]+1)/(xnnn[j]+1-xlen[j]),j)); } #endif while(S[c]--){ auto p=pq.top();pq.pop(); int j=p.second; ++xnnn[j]; int t=xnnn[j]; while(t%MD==0){ t/=MD; ++mc; } r=(long long)r*(t%MD)%MD; t=xnnn[j]-xlen[j]; while(t%MD==0){ t/=MD; --mc; } r=(long long)r*inv[t%MD]%MD; pq.push(make_pair(1.l*(xnnn[j]+1)/(xnnn[j]+1-xlen[j]),j)); } if(mc){ cout<<0; exit(0); } } } cout<<r; }